Skip to content

Commit

Permalink
[test] Move SIMD linking test to simd dir (WebAssembly#1610)
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Mar 1, 2023
1 parent 47c73e4 commit e7cb11f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
14 changes: 0 additions & 14 deletions test/core/linking.wast
Original file line number Diff line number Diff line change
Expand Up @@ -129,20 +129,6 @@
)


(module
(global (export "g-v128") v128 (v128.const i64x2 0 0))
(global (export "mg-v128") (mut v128) (v128.const i64x2 0 0))
)
(register "Mv128")

(module
;; TODO: Reactivate once the fix for https://bugs.chromium.org/p/v8/issues/detail?id=13732
;; has made it to the downstream node.js that we use on CI.
;; (import "Mv128" "g-v128" (global v128))
(import "Mv128" "mg-v128" (global (mut v128)))
)


;; Tables

(module $Mt
Expand Down
12 changes: 12 additions & 0 deletions test/core/simd/simd_linking.wast
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(module
(global (export "g-v128") v128 (v128.const i64x2 0 0))
(global (export "mg-v128") (mut v128) (v128.const i64x2 0 0))
)
(register "Mv128")

(module
;; TODO: Reactivate once the fix for https://bugs.chromium.org/p/v8/issues/detail?id=13732
;; has made it to the downstream node.js that we use on CI.
;; (import "Mv128" "g-v128" (global v128))
(import "Mv128" "mg-v128" (global (mut v128)))
)

0 comments on commit e7cb11f

Please sign in to comment.