summaryrefslogtreecommitdiff
path: root/test/ctor-eval/no_partial.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/ctor-eval/no_partial.wast')
-rw-r--r--test/ctor-eval/no_partial.wast10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/ctor-eval/no_partial.wast b/test/ctor-eval/no_partial.wast
deleted file mode 100644
index 18ef177b7..000000000
--- a/test/ctor-eval/no_partial.wast
+++ /dev/null
@@ -1,10 +0,0 @@
-(module
- (memory 256 256)
- (data (i32.const 10) "waka waka waka waka waka")
- (export "test1" $test1)
- (func $test1
- (i32.store8 (i32.const 12) (i32.const 115)) ;; a safe store, should alter memory
- (unreachable)
- (i32.store8 (i32.const 13) (i32.const 114)) ;; a safe store, should alter memory, but we trapped already, and so must roll back the first one too
- )
-)