Skip to content

Commit 1dd2c23

Browse files
authored
Update ctor eval debug output test expectation (#21729)
Update the expected output of `test_eval_ctors_debug_output` to account for changed debug output due to WebAssembly/binaryen#6464. The test will now succeed before and after that upstream Binaryen change.
1 parent 75decdf commit 1dd2c23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_other.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7926,7 +7926,7 @@ def test_eval_ctors_debug_output(self):
79267926
err = self.run_process([EMXX, 'src.cpp', '--js-library', 'lib.js', '-O2', '-sEVAL_CTORS'], stderr=PIPE).stderr
79277927
# logging should show we failed, and why
79287928
self.assertNotContained('ctor_evaller: not successful', err)
7929-
self.assertContained('stopping since could not eval: call import: env.external_thing', err)
7929+
self.assertContained('could not eval: call import: env.external_thing', err)
79307930

79317931
def test_override_js_execution_environment(self):
79327932
create_file('main.c', r'''

0 commit comments

Comments
 (0)