From b75e84ae9a66eb64f0f7cb527a2282db88c9313c Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Fri, 13 Dec 2019 15:01:50 +0200 Subject: [PATCH] Try fixing macos CI, take 2 --- test/run-spec-test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/run-spec-test.py b/test/run-spec-test.py index ac938dc..a9c052e 100755 --- a/test/run-spec-test.py +++ b/test/run-spec-test.py @@ -229,8 +229,9 @@ class Wasm3(): raise Exception(error) def _write(self, data): - #if not self._is_running(): - # raise Exception("Not running") + if not self._is_running(): + self.load(self.loaded) + #raise Exception("Not running") self.p.stdin.write(data.encode("utf-8")) self.p.stdin.flush()