Skip to content

Commit 449adf2

Browse files
committed
Fail instead of warn
1 parent d6675f4 commit 449adf2

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
@@ -1998,7 +1998,7 @@ def _build_and_run(self, filename, expected_output, args=None,
19981998
if 'EMTEST_SKIP_WASM_ENGINE' in os.environ:
19991999
self.skipTest('no wasm engine was found to run the standalone part of this test')
20002000
else:
2001-
logger.warning('no wasm engine was found to run the standalone part of this test (Use EMTEST_SKIP_WASM_ENGINE to mute this warning')
2001+
self.fail('no wasm engine was found to run the standalone part of this test (Use EMTEST_SKIP_WASM_ENGINE to skip)')
20022002
engines += self.wasm_engines
20032003
if len(engines) == 0:
20042004
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)