-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to fetching tests directly from proposals
testsuite repo is usually severely outdated, so it's better to fetch tests directly from the spec and proposal repos for more control. We already have deduplication mechanism anyway, so this shouldn't cause any issues.
- Loading branch information
Showing
3 changed files
with
42 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
[submodule "tests/testsuite"] | ||
path = tests/testsuite | ||
url = https://github.com/WebAssembly/testsuite.git | ||
[submodule "tests/spec"] | ||
path = tests/spec | ||
url = https://github.com/WebAssembly/spec | ||
shallow = true | ||
[submodule "tests/exception-handling"] | ||
path = tests/exception-handling | ||
url = https://github.com/WebAssembly/exception-handling | ||
shallow = true | ||
[submodule "tests/extended-name-section"] | ||
path = tests/extended-name-section | ||
url = https://github.com/WebAssembly/extended-name-section | ||
shallow = true | ||
[submodule "tests/tail-call"] | ||
path = tests/tail-call | ||
url = https://github.com/WebAssembly/tail-call | ||
shallow = true | ||
[submodule "tests/threads"] | ||
path = tests/threads | ||
url = https://github.com/WebAssembly/threads | ||
shallow = true |
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
Submodule testsuite
deleted from
5fddf1