-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update spec test suite submodule (#1950)
Just a few minor updates to the harness, otherwise nothing major here.
- Loading branch information
1 parent
3bef34b
commit 00091b2
Showing
1,352 changed files
with
32,900 additions
and
1,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
tests/snapshots/testsuite/proposals/custom-page-sizes/custom-page-sizes.wast/36.print
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
(module | ||
(type (;0;) (func (result i32))) | ||
(type (;1;) (func (param i32) (result i32))) | ||
(memory (;0;) 1 1 (pagesize 0x1)) | ||
(export "size" (func 0)) | ||
(export "grow" (func 1)) | ||
(export "load" (func 2)) | ||
(func (;0;) (type 0) (result i32) | ||
memory.size | ||
) | ||
(func (;1;) (type 1) (param i32) (result i32) | ||
local.get 0 | ||
memory.grow | ||
) | ||
(func (;2;) (type 1) (param i32) (result i32) | ||
local.get 0 | ||
i32.load8_u | ||
) | ||
(data (;0;) (i32.const 0) "xyz") | ||
) |
9 changes: 9 additions & 0 deletions
9
tests/snapshots/testsuite/proposals/custom-page-sizes/custom-page-sizes.wast/43.print
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(module | ||
(type (;0;) (func (result i32))) | ||
(memory (;0;) 1 1 (pagesize 0x10000)) | ||
(export "size" (func 0)) | ||
(func (;0;) (type 0) (result i32) | ||
memory.size | ||
) | ||
(data (;0;) (i32.const 0) "xyz") | ||
) |
Oops, something went wrong.