summaryrefslogtreecommitdiff
path: root/scripts/fuzz_shell.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/fuzz_shell.js')
-rw-r--r--scripts/fuzz_shell.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/fuzz_shell.js b/scripts/fuzz_shell.js
index 6458f8126..be65ce31c 100644
--- a/scripts/fuzz_shell.js
+++ b/scripts/fuzz_shell.js
@@ -108,7 +108,7 @@ var instance;
try {
instance = new WebAssembly.Instance(module, imports);
} catch (e) {
- console.log('exception: failed to instantiate module');
+ console.log('exception thrown: failed to instantiate module');
quit();
}
@@ -143,7 +143,7 @@ for (var e in exports) {
console.log('[fuzz-exec] note result: ' + e + ' => ' + printed(result));
}
} catch (e) {
- console.log('exception!');// + [e, e.stack]);
+ console.log('exception thrown: ' + e);
}
}