summaryrefslogtreecommitdiff
path: root/test/spec
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-06-18 18:34:53 -0700
committerGitHub <noreply@github.com>2024-06-18 18:34:53 -0700
commit02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b (patch)
tree6ba496717a64c8a5e127f6a8fc8e628d0bc46300 /test/spec
parent2df678e4670517eaac40d1d2d9541d3b706b324b (diff)
downloadbinaryen-02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b.tar.gz
binaryen-02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b.tar.bz2
binaryen-02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b.zip
Re-enable binary.wast spec test (#6677)
Fix the wast parser to accept IDs on quoted modules, remove tests that are invalidated by the multimemory proposal, and add validation that the total number of variables in a function is less than 2^32 and that the code section is present if there is a non-empty function section.
Diffstat (limited to 'test/spec')
-rw-r--r--test/spec/binary.wast191
1 files changed, 0 insertions, 191 deletions
diff --git a/test/spec/binary.wast b/test/spec/binary.wast
index e748bbe8c..e7bca9b11 100644
--- a/test/spec/binary.wast
+++ b/test/spec/binary.wast
@@ -138,197 +138,6 @@
"zero flag expected"
)
-;; memory.grow reserved byte equal to zero.
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\09\01" ;; Code section
-
- ;; function 0
- "\07\00"
- "\41\00" ;; i32.const 0
- "\40" ;; memory.grow
- "\01" ;; memory.grow reserved byte is not equal to zero!
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-;; memory.grow reserved byte should not be a "long" LEB128 zero.
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\0a\01" ;; Code section
-
- ;; function 0
- "\08\00"
- "\41\00" ;; i32.const 0
- "\40" ;; memory.grow
- "\80\00" ;; memory.grow reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-;; Same as above for 3, 4, and 5-byte zero encodings.
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\0b\01" ;; Code section
-
- ;; function 0
- "\09\00"
- "\41\00" ;; i32.const 0
- "\40" ;; memory.grow
- "\80\80\00" ;; memory.grow reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\0c\01" ;; Code section
-
- ;; function 0
- "\0a\00"
- "\41\00" ;; i32.const 0
- "\40" ;; memory.grow
- "\80\80\80\00" ;; memory.grow reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\0d\01" ;; Code section
-
- ;; function 0
- "\0b\00"
- "\41\00" ;; i32.const 0
- "\40" ;; memory.grow
- "\80\80\80\80\00" ;; memory.grow reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-;; memory.size reserved byte equal to zero.
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\07\01" ;; Code section
-
- ;; function 0
- "\05\00"
- "\3f" ;; memory.size
- "\01" ;; memory.size reserved byte is not equal to zero!
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-;; memory.size reserved byte should not be a "long" LEB128 zero.
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\08\01" ;; Code section
-
- ;; function 0
- "\06\00"
- "\3f" ;; memory.size
- "\80\00" ;; memory.size reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-;; Same as above for 3, 4, and 5-byte zero encodings.
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\09\01" ;; Code section
-
- ;; function 0
- "\07\00"
- "\3f" ;; memory.size
- "\80\80\00" ;; memory.size reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\0a\01" ;; Code section
-
- ;; function 0
- "\08\00"
- "\3f" ;; memory.size
- "\80\80\80\00" ;; memory.size reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
-(assert_malformed
- (module binary
- "\00asm" "\01\00\00\00"
- "\01\04\01\60\00\00" ;; Type section
- "\03\02\01\00" ;; Function section
- "\05\03\01\00\00" ;; Memory section
- "\0a\0b\01" ;; Code section
-
- ;; function 0
- "\09\00"
- "\3f" ;; memory.size
- "\80\80\80\80\00" ;; memory.size reserved byte
- "\1a" ;; drop
- "\0b" ;; end
- )
- "zero flag expected"
-)
-
;; No more than 2^32 locals.
(assert_malformed
(module binary