Skip to content

Commit 10ea18b

Browse files
committed
Address review
1 parent 5a6df09 commit 10ea18b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/common.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1983,7 +1983,10 @@ def _build_and_run(self, filename, expected_output, args=None,
19831983
# TODO once standalone wasm support is more stable, apply use_all_engines
19841984
# like with js engines, but for now as we bring it up, test in all of them
19851985
if not self.wasm_engines:
1986-
self.skipTest('no wasm engine was found to run the standalone part of this test')
1986+
if 'EMTEST_SKIP_WASM_ENGINE' in os.environ:
1987+
self.skipTest('no wasm engine was found to run the standalone part of this test')
1988+
else:
1989+
logger.warning('no wasm engine was found to run the standalone part of this test (Use EMTEST_SKIP_WASM_ENGINE to mute this warning')
19871990
engines += self.wasm_engines
19881991
if len(engines) == 0:
19891992
self.fail('No JS engine present to run this test with. Check %s and the paths therein.' % config.EM_CONFIG)

0 commit comments

Comments
 (0)