summaryrefslogtreecommitdiff
path: root/src/tools/wasm-opt.cpp
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-12-29 21:44:07 -0800
committerGitHub <noreply@github.com>2021-12-29 21:44:07 -0800
commit6137b338c7fb37ba98b63c31225ec9cfda8cfa59 (patch)
tree5cf6f81fd9217e76160d486deb384dcbf77b0cf0 /src/tools/wasm-opt.cpp
parentad723a19b018a786bcbec8d9e16160f30959e60e (diff)
downloadbinaryen-6137b338c7fb37ba98b63c31225ec9cfda8cfa59.tar.gz
binaryen-6137b338c7fb37ba98b63c31225ec9cfda8cfa59.tar.bz2
binaryen-6137b338c7fb37ba98b63c31225ec9cfda8cfa59.zip
Compare traps in ExecutionResults (#4405)
We used to only compare return values, and in #4369 we started comparing whether an uncaught exception was thrown. This also adds whether a trap occurred to `ExecutionResults`. So in `--fuzz-exec`, if a program with a trap loses the trap or vice versa, it will error out saying the result has changed, unless either of `--ignore-implicit-traps` or `--trans-never-happen` is set.
Diffstat (limited to 'src/tools/wasm-opt.cpp')
-rw-r--r--src/tools/wasm-opt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/wasm-opt.cpp b/src/tools/wasm-opt.cpp
index 5aa0c374a..2ccf11fa0 100644
--- a/src/tools/wasm-opt.cpp
+++ b/src/tools/wasm-opt.cpp
@@ -289,7 +289,7 @@ int main(int argc, const char* argv[]) {
runner.run();
}
- ExecutionResults results;
+ ExecutionResults results(options.passOptions);
if (fuzzExecBefore) {
results.get(wasm);
}