diff options
author | Alon Zakai <azakai@google.com> | 2021-03-30 13:05:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 13:05:42 -0700 |
commit | 4441588c356ece316a36019715e511b7eed36021 (patch) | |
tree | a6ff7d412d1fec4b8258d88a28eac21e37a8f8f6 /test/passes | |
parent | 38c119358b96d30b2af6c0ba29aa08f610fe2f73 (diff) | |
download | binaryen-4441588c356ece316a36019715e511b7eed36021.tar.gz binaryen-4441588c356ece316a36019715e511b7eed36021.tar.bz2 binaryen-4441588c356ece316a36019715e511b7eed36021.zip |
Fuzzing: Minor execution-results.h fixes (#3747)
Log out an i64 as two i32s. That keeps the output consistent regardless of
whether we legalize.
Do not print a reference result. The printed value cannot be compared, as
funcref(10) (where 10 is the index of the function) is not guaranteed to be
the same after opts.
Trap when trying to call an export with a nondefaultable type (instead of
asserting when trying to create zeros for it).
Diffstat (limited to 'test/passes')
-rw-r--r-- | test/passes/fuzz-exec_all-features.txt | 4 | ||||
-rw-r--r-- | test/passes/simplify-globals_all-features_fuzz-exec.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/passes/fuzz-exec_all-features.txt b/test/passes/fuzz-exec_all-features.txt index 8785d088a..e5687b16a 100644 --- a/test/passes/fuzz-exec_all-features.txt +++ b/test/passes/fuzz-exec_all-features.txt @@ -208,7 +208,7 @@ [fuzz-exec] calling rmw-reads-modifies-and-writes-asymmetrical [LoggingExternalInterface logging 214] [fuzz-exec] calling func -[fuzz-exec] note result: func => funcref(func) +[fuzz-exec] note result: func => funcref (module (type $none_=>_funcref (func (result funcref))) (elem declare func $func) @@ -218,5 +218,5 @@ ) ) [fuzz-exec] calling func -[fuzz-exec] note result: func => funcref(func) +[fuzz-exec] note result: func => funcref [fuzz-exec] comparing func diff --git a/test/passes/simplify-globals_all-features_fuzz-exec.txt b/test/passes/simplify-globals_all-features_fuzz-exec.txt index 464ef0912..68330b69f 100644 --- a/test/passes/simplify-globals_all-features_fuzz-exec.txt +++ b/test/passes/simplify-globals_all-features_fuzz-exec.txt @@ -1,5 +1,5 @@ [fuzz-exec] calling export -[fuzz-exec] note result: export => funcref(0) +[fuzz-exec] note result: export => funcref (module (type $f32_i31ref_i64_f64_funcref_=>_none (func (param f32 i31ref i64 f64 funcref))) (type $none_=>_funcref (func (result funcref))) @@ -17,5 +17,5 @@ ) ) [fuzz-exec] calling export -[fuzz-exec] note result: export => funcref(0) +[fuzz-exec] note result: export => funcref [fuzz-exec] comparing export |