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