add whole test files from Core Test Suit
This commit is contained in:
+154
-1
@@ -24,4 +24,157 @@
|
||||
(func (export "get-6") (result f64) (get_global 6))
|
||||
(func (export "set-5") (param f32) (set_global 5 (get_local 0)))
|
||||
(func (export "set-6") (param f64) (set_global 6 (get_local 0)))
|
||||
)
|
||||
)
|
||||
|
||||
(assert_return (invoke "get-a") (i32.const -2))
|
||||
(assert_return (invoke "get-b") (i64.const -5))
|
||||
(assert_return (invoke "get-x") (i32.const -12))
|
||||
(assert_return (invoke "get-y") (i64.const -15))
|
||||
|
||||
(assert_return (invoke "get-1") (f32.const -3))
|
||||
(assert_return (invoke "get-2") (f64.const -4))
|
||||
(assert_return (invoke "get-5") (f32.const -13))
|
||||
(assert_return (invoke "get-6") (f64.const -14))
|
||||
|
||||
(assert_return (invoke "set-x" (i32.const 6)))
|
||||
(assert_return (invoke "set-y" (i64.const 7)))
|
||||
(assert_return (invoke "set-5" (f32.const 8)))
|
||||
(assert_return (invoke "set-6" (f64.const 9)))
|
||||
|
||||
(assert_return (invoke "get-x") (i32.const 6))
|
||||
(assert_return (invoke "get-y") (i64.const 7))
|
||||
(assert_return (invoke "get-5") (f32.const 8))
|
||||
(assert_return (invoke "get-6") (f64.const 9))
|
||||
|
||||
(assert_invalid
|
||||
(module (global f32 (f32.const 0)) (func (set_global 0 (i32.const 1))))
|
||||
"global is immutable"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (import "m" "a" (global (mut i32))))
|
||||
"mutable globals cannot be imported"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global (import "m" "a") (mut i32)))
|
||||
"mutable globals cannot be imported"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global (mut f32) (f32.const 0)) (export "a" (global 0)))
|
||||
"mutable globals cannot be exported"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global (export "a") (mut f32) (f32.const 0)))
|
||||
"mutable globals cannot be exported"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global f32 (f32.neg (f32.const 0))))
|
||||
"constant expression required"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global f32 (get_local 0)))
|
||||
"constant expression required"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global f32 (f32.neg (f32.const 1))))
|
||||
"constant expression required"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (i32.const 0) (nop)))
|
||||
"constant expression required"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (nop)))
|
||||
"constant expression required"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (f32.const 0)))
|
||||
"type mismatch"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (i32.const 0) (i32.const 0)))
|
||||
"type mismatch"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (;empty instruction sequence;)))
|
||||
"type mismatch"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (get_global 0)))
|
||||
"unknown global"
|
||||
)
|
||||
|
||||
(assert_invalid
|
||||
(module (global i32 (get_global 1)) (global i32 (i32.const 0)))
|
||||
"unknown global"
|
||||
)
|
||||
|
||||
(module
|
||||
(import "spectest" "global_i32" (global i32))
|
||||
)
|
||||
(assert_malformed
|
||||
(module binary
|
||||
"\00asm" "\01\00\00\00"
|
||||
"\02\94\80\80\80\00" ;; import section
|
||||
"\01" ;; length 1
|
||||
"\08\73\70\65\63\74\65\73\74" ;; "spectest"
|
||||
"\0a\67\6c\6f\62\61\6c\5f\69\33\32" ;; "global_i32"
|
||||
"\03" ;; GlobalImport
|
||||
"\7f" ;; i32
|
||||
"\02" ;; invalid mutability
|
||||
)
|
||||
"invalid mutability"
|
||||
)
|
||||
(assert_malformed
|
||||
(module binary
|
||||
"\00asm" "\01\00\00\00"
|
||||
"\02\94\80\80\80\00" ;; import section
|
||||
"\01" ;; length 1
|
||||
"\08\73\70\65\63\74\65\73\74" ;; "spectest"
|
||||
"\0a\67\6c\6f\62\61\6c\5f\69\33\32" ;; "global_i32"
|
||||
"\03" ;; GlobalImport
|
||||
"\7f" ;; i32
|
||||
"\ff" ;; invalid mutability
|
||||
)
|
||||
"invalid mutability"
|
||||
)
|
||||
|
||||
(module
|
||||
(global i32 (i32.const 0))
|
||||
)
|
||||
(assert_malformed
|
||||
(module binary
|
||||
"\00asm" "\01\00\00\00"
|
||||
"\06\86\80\80\80\00" ;; global section
|
||||
"\01" ;; length 1
|
||||
"\7f" ;; i32
|
||||
"\02" ;; invalid mutability
|
||||
"\41\00" ;; i32.const 0
|
||||
"\0b" ;; end
|
||||
)
|
||||
"invalid mutability"
|
||||
)
|
||||
(assert_malformed
|
||||
(module binary
|
||||
"\00asm" "\01\00\00\00"
|
||||
"\06\86\80\80\80\00" ;; global section
|
||||
"\01" ;; length 1
|
||||
"\7f" ;; i32
|
||||
"\ff" ;; invalid mutability
|
||||
"\41\00" ;; i32.const 0
|
||||
"\0b" ;; end
|
||||
)
|
||||
"invalid mutability"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user