Less verbose runtests output. Don't ocamlbuild by default (pass --build as an arg to build). - #20
Merged
Merged
Conversation
…ld as an arg to build).
Member
|
LGTM I have another feature wish. Can the script check the exit code of the interpreter? Currently, if it fails with e.g. a syntax error, but there is no expected output, it is regarded okay. (I changed the interpreter today so that it returns a non-zero error code on any error.) |
rossberg
added a commit
that referenced
this pull request
Aug 21, 2015
Less verbose runtests output. Don't ocamlbuild by default (pass --build as an arg to build).
Contributor
Author
|
It already checks the exit code. self.assertEqual(0, exitCode, "test runner failed with exit code %i" % exitCode)
|
Member
|
Ah, indeed, with your change it already works. Thanks!
|
ErikMcClure
pushed a commit
to innative-sdk/spec
that referenced
this pull request
Jun 15, 2020
Right now there is a spec assert that host call's iterable result and wasm have the same arity. There's no guarantee this is true. Instead we should probably throw a type error if they don't match. In the future, we could do the more JS-y approach and allow the arity of result to be at least the arity of the expected signature.
dhil
pushed a commit
to dhil/webassembly-spec
that referenced
this pull request
Oct 3, 2023
dhil
added a commit
to dhil/webassembly-spec
that referenced
this pull request
Jan 25, 2024
Restore WasmFX changes
rossberg
pushed a commit
that referenced
this pull request
Jul 3, 2024
rossberg
pushed a commit
that referenced
this pull request
Jul 19, 2024
rossberg
pushed a commit
that referenced
this pull request
Jan 20, 2025
CharlieTap
pushed a commit
to CharlieTap/spec
that referenced
this pull request
Sep 25, 2025
Rename repository to "wide-arithmetic"
stevenfontanella
pushed a commit
to stevenfontanella/spec
that referenced
this pull request
Nov 12, 2025
threads:
WebAssembly/threads@00464f4e
simd:
WebAssembly/simd@77e7fdac
bulk-memory-operations:
WebAssembly/bulk-memory-operations@404b7e7b
reference-types:
WebAssembly/reference-types@774dd1d0
This change was automatically generated by `update-testsuite.sh`
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Made test run output silent by default (unless it fails). Removed the warning for no expected output (you can uncomment to turn it back on).
ocamlbuild isn't run to build main.native by default anymore. You can do
./runtests.py --buildif you want it to be built for you.