Skip to content

Commit 7e0058a

Browse files
committed
Fail instead of warn
1 parent 10ea18b commit 7e0058a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1986,7 +1986,7 @@ def _build_and_run(self, filename, expected_output, args=None,
19861986
if 'EMTEST_SKIP_WASM_ENGINE' in os.environ:
19871987
self.skipTest('no wasm engine was found to run the standalone part of this test')
19881988
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')
1989+
self.fail('no wasm engine was found to run the standalone part of this test (Use EMTEST_SKIP_WASM_ENGINE to skip)')
19901990
engines += self.wasm_engines
19911991
if len(engines) == 0:
19921992
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)