diff options
author | Thomas Lively <tlively@google.com> | 2024-04-24 11:06:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 11:06:17 -0700 |
commit | ff02ea0bbe7e3288a2463bb449eb74a2753dda10 (patch) | |
tree | 55d042efc35cc8be79a22c0e54f27cb2e7c9b6b9 /test/spec/fac.wast | |
parent | 22e80de9a32c19d294080242559fb3c2a84a42b5 (diff) | |
download | binaryen-ff02ea0bbe7e3288a2463bb449eb74a2753dda10.tar.gz binaryen-ff02ea0bbe7e3288a2463bb449eb74a2753dda10.tar.bz2 binaryen-ff02ea0bbe7e3288a2463bb449eb74a2753dda10.zip |
[wasm-shell] Error on unknown commands (#6528)
We previously ignored unknown wast commands, which could lead to the mistaken
impression that we were passing test cases that we were in fact not running at
all. Clarify matters by having wasm-shell error out on unrecognized commands,
and comment out all such commands in our versions of the spec test. As we work
toward being able to run the upstream spec tests, having these unsupported
commands explicitly commented out will make it easier to track progress toward
full support.
Diffstat (limited to 'test/spec/fac.wast')
-rw-r--r-- | test/spec/fac.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec/fac.wast b/test/spec/fac.wast index ef10991a8..521cdc459 100644 --- a/test/spec/fac.wast +++ b/test/spec/fac.wast @@ -86,4 +86,4 @@ (assert_return (invoke "fac-rec-named" (i64.const 25)) (i64.const 7034535277573963776)) (assert_return (invoke "fac-iter-named" (i64.const 25)) (i64.const 7034535277573963776)) (assert_return (invoke "fac-opt" (i64.const 25)) (i64.const 7034535277573963776)) -(assert_exhaustion (invoke "fac-rec" (i64.const 1073741824)) "call stack exhausted") +;; (assert_exhaustion (invoke "fac-rec" (i64.const 1073741824)) "call stack exhausted") |