diff options
author | James Ring <sjr@jdns.org> | 2024-10-08 10:11:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 10:11:05 -0700 |
commit | 646785d8b2b15a104d4ed0431125b2c781e141ea (patch) | |
tree | 1e8540bf3b84cb838ef0aaf678c7c0f51e7d8d2a /test/spec/i64.txt | |
parent | e1d84ff0466c269a457056a0420d1b6cc5cf3815 (diff) | |
download | wabt-646785d8b2b15a104d4ed0431125b2c781e141ea.tar.gz wabt-646785d8b2b15a104d4ed0431125b2c781e141ea.tar.bz2 wabt-646785d8b2b15a104d4ed0431125b2c781e141ea.zip |
Raise parse error on NaN in i32 and i64 literals (#2485)
Previously, the parser would return result::Error, but would not
populate an error message.
Diffstat (limited to 'test/spec/i64.txt')
-rw-r--r-- | test/spec/i64.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/spec/i64.txt b/test/spec/i64.txt index b2255721..75a9cd3a 100644 --- a/test/spec/i64.txt +++ b/test/spec/i64.txt @@ -98,5 +98,13 @@ out/test/spec/i64.wast:484: assert_invalid passed: out/test/spec/i64.wast:485: assert_invalid passed: out/test/spec/i64/i64.29.wasm:0000020: error: type mismatch in i64.ne, expected [i64, i64] but got [i32, f32] 0000020: error: OnCompareExpr callback failed +out/test/spec/i64.wast:488: assert_malformed passed: + out/test/spec/i64/i64.30.wat:1:31: error: invalid literal "nan:arithmetic" + (func (result i64) (i64.const nan:arithmetic)) + ^^^^^^^^^^^^^^ +out/test/spec/i64.wast:492: assert_malformed passed: + out/test/spec/i64/i64.31.wat:1:31: error: invalid literal "nan:canonical" + (func (result i64) (i64.const nan:canonical)) + ^^^^^^^^^^^^^ 416/416 tests passed. ;;; STDOUT ;;) |