diff options
Diffstat (limited to 'test/unit/test_bysyncify.py')
-rw-r--r-- | test/unit/test_bysyncify.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/test_bysyncify.py b/test/unit/test_bysyncify.py index 5373a4def..29a8ae7cb 100644 --- a/test/unit/test_bysyncify.py +++ b/test/unit/test_bysyncify.py @@ -8,7 +8,8 @@ class BysyncifyTest(BinaryenTestCase): def test_bysyncify(self): def test(args): print(args) - run_process(WASM_OPT + args + [self.input_path('bysyncify.wast'), '--bysyncify', '-o', 'a.wasm']) + run_process(WASM_OPT + args + [self.input_path('bysyncify-sleep.wast'), '--bysyncify', '-o', 'a.wasm']) + run_process(WASM_OPT + args + [self.input_path('bysyncify-coroutine.wast'), '--bysyncify', '-o', 'b.wasm']) print(' file size: %d' % os.path.getsize('a.wasm')) run_process([NODEJS, self.input_path('bysyncify.js')]) |