Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/auto_update_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def update_example_tests():
subprocess.check_call(cmd)
print('run...', output_file)
proc = subprocess.run([output_file], capture_output=True)
assert proc.returncode == 0, [proc.returncode, proc.stderror, proc.stdout]
assert proc.returncode == 0, [proc.returncode, proc.stderr, proc.stdout]
actual = proc.stdout
with open(expected, 'wb') as o:
o.write(actual)
Expand Down
3 changes: 1 addition & 2 deletions scripts/fuzz_shell.js
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,7 @@ function build(binary, isSecond) {
try {
instance = new WebAssembly.Instance(module, imports);
} catch (e) {
console.log('exception thrown: failed to instantiate module: ' + e);
quit();
throw new Error('exception thrown: failed to instantiate module: ' + e);
}

// Do not add the second instance's exports to the list, as that would be
Expand Down
Loading