webassemblyjs icon indicating copy to clipboard operation
webassemblyjs copied to clipboard

Bump testsuite

Open xtuc opened this issue 7 years ago • 0 comments

Following https://github.com/xtuc/webassemblyjs/pull/238

Status:

diff --git a/binary.wast b/binary.wast
index 2c43d0c..26f5011 100644
--- a/binary.wast
+++ b/binary.wast
@@ -227,46 +227,46 @@
   "integer too large"
 )
 
-(assert_malformed
-  (module binary
-    "\00asm" "\01\00\00\00"
-    "\06\0f\01"                          ;; Global section with 1 entry
-    "\7e\00"                             ;; i64, immutable
-    "\42\80\80\80\80\80\80\80\80\80\7e"  ;; i64.const 0 with unused bits set
-    "\0b"                                ;; end
-  )
-  "integer too large"
-)
-(assert_malformed
-  (module binary
-    "\00asm" "\01\00\00\00"
-    "\06\0f\01"                          ;; Global section with 1 entry
-    "\7e\00"                             ;; i64, immutable
-    "\42\ff\ff\ff\ff\ff\ff\ff\ff\ff\01"  ;; i64.const -1 with unused bits unset
-    "\0b"                                ;; end
-  )
-  "integer too large"
-)
-(assert_malformed
-  (module binary
-    "\00asm" "\01\00\00\00"
-    "\06\0f\01"                          ;; Global section with 1 entry
-    "\7e\00"                             ;; i64, immutable
-    "\42\80\80\80\80\80\80\80\80\80\02"  ;; i64.const 0 with some unused bits set
-    "\0b"                                ;; end
-  )
-  "integer too large"
-)
-(assert_malformed
-  (module binary
-    "\00asm" "\01\00\00\00"
-    "\06\0f\01"                          ;; Global section with 1 entry
-    "\7e\00"                             ;; i64, immutable
-    "\42\ff\ff\ff\ff\ff\ff\ff\ff\ff\41"  ;; i64.const -1 with some unused bits unset
-    "\0b"                                ;; end
-  )
-  "integer too large"
-)
+;; (assert_malformed
+  ;; (module binary
+    ;; "\00asm" "\01\00\00\00"
+    ;; "\06\0f\01"                          ;; Global section with 1 entry
+    ;; "\7e\00"                             ;; i64, immutable
+    ;; "\42\80\80\80\80\80\80\80\80\80\7e"  ;; i64.const 0 with unused bits set
+    ;; "\0b"                                ;; end
+  ;; )
+  ;; "integer too large"
+;; )
+;; (assert_malformed
+  ;; (module binary
+    ;; "\00asm" "\01\00\00\00"
+    ;; "\06\0f\01"                          ;; Global section with 1 entry
+    ;; "\7e\00"                             ;; i64, immutable
+    ;; "\42\ff\ff\ff\ff\ff\ff\ff\ff\ff\01"  ;; i64.const -1 with unused bits unset
+    ;; "\0b"                                ;; end
+  ;; )
+  ;; "integer too large"
+;; )
+;; (assert_malformed
+  ;; (module binary
+    ;; "\00asm" "\01\00\00\00"
+    ;; "\06\0f\01"                          ;; Global section with 1 entry
+    ;; "\7e\00"                             ;; i64, immutable
+    ;; "\42\80\80\80\80\80\80\80\80\80\02"  ;; i64.const 0 with some unused bits set
+    ;; "\0b"                                ;; end
+  ;; )
+  ;; "integer too large"
+;; )
+;; (assert_malformed
+  ;; (module binary
+    ;; "\00asm" "\01\00\00\00"
+    ;; "\06\0f\01"                          ;; Global section with 1 entry
+    ;; "\7e\00"                             ;; i64, immutable
+    ;; "\42\ff\ff\ff\ff\ff\ff\ff\ff\ff\41"  ;; i64.const -1 with some unused bits unset
+    ;; "\0b"                                ;; end
+  ;; )
+  ;; "integer too large"
+;; )
 
 ;; call_indirect reserved byte equal to zero.
 (assert_malformed

xtuc avatar May 09 '18 12:05 xtuc