From 6c399407310f1108bd38048019613be07837ac80 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Tue, 31 Dec 2019 02:22:20 +0200 Subject: [PATCH] Instrument test sctipt --- 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 f70c35c..74a5686 100755 --- a/test/run-spec-test.py +++ b/test/run-spec-test.py @@ -235,9 +235,10 @@ class Wasm3(): self.run() try: if self.loaded: - self.load(self.loaded) + res = self.load(self.loaded) + print(res) except Exception as e: - pass + print(e) break except Exception as e: print(f"wasm3: {e} => retry")