Skip to content

Commit

Permalink
update binaryenjs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tlively committed Jan 3, 2024
1 parent d6b5411 commit 7196dd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/binaryen.js/atomics.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var wast = `
(module
(memory $0 (shared 1 1))
(memory $0 1 1 shared)
)
`;

Expand Down
2 changes: 1 addition & 1 deletion test/binaryen.js/atomics.js.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(module
(type $0 (func))
(memory $0 (shared 1 1))
(memory $0 1 1 shared)
(func $main
(i32.atomic.store
(i32.const 0)
Expand Down
4 changes: 2 additions & 2 deletions test/binaryen.js/kitchen-sink.js.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ getExpressionInfo(tuple[3])={"id":14,"type":5,"value":3.7}
(import "module" "base" (func $an-imported (type $2) (param i32 f64) (result f32)))
(import "module" "base" (tag $a-tag-imp (param i32)))
(global $a-global i32 (i32.const 1))
(memory $0 (shared 1 256))
(memory $0 1 256 shared)
(data $0 (i32.const 10) "hello, world")
(data $1 "I am passive")
(table $t0 1 funcref)
Expand Down Expand Up @@ -2243,7 +2243,7 @@ getExpressionInfo(tuple[3])={"id":14,"type":5,"value":3.7}
(import "module" "base" (func $an-imported (type $2) (param i32 f64) (result f32)))
(import "module" "base" (tag $a-tag-imp (param i32)))
(global $a-global i32 (i32.const 1))
(memory $0 (shared 1 256))
(memory $0 1 256 shared)
(data $0 (i32.const 10) "hello, world")
(data $1 "I am passive")
(table $t0 1 funcref)
Expand Down

0 comments on commit 7196dd2

Please sign in to comment.