alexcrichton requested pchickey for a review on PR #9560.
alexcrichton opened PR #9560 from alexcrichton:refactor-wast to bytecodealliance:main:
This commit refactors the
tests/wast.rstest suite which runs all of the upstream spec tests as*.wastfiles as well as our ownmisc_testsuitewhich has its own suite of*.wastfiles. Previously the set of wasm features active for each test was a sort of random mishmash and convoluted set of conditionals which was updated and edited over time as upstream proposal test suites evolved. This was then mirrored into our own conventions formisc_testsuiteas well. Overall though this has a number of downsides I'm trying to fix here:
The calculation of what features are enabled is quite complicated and effectively a random mishmash of
||conditionals with hierarchies that don't make any sense beyond "this is just required to get things to pass".There is no means of per-test configuration. For example
canonicalize-nans.wasthad hardcoded logic intests/wast.rsthat it needed a different setting turned on inConfig.There was no easy means to write tests for Wasmtime which take a union of a number of proposals together without having lots of sub-folders that may not make sense.
Tests that require a particular proposal had to have duplicate logic for Winch as it doesn't support the full suite of features of all proposals that Cranelift does.
The new system implemented in this commit takes a leaf out of the
disastests. There is a newTestConfigstructure in thetests/wast.rsharness which is decoded from each test (leading;;!comments) which enables specifying, in each test, what's required. This encompasses many wasm proposals but additionally captures other behavior like nan-canonicalization. This means that all test files inmisc_testsuite/**/*.wastare now manually annotated with what wasm features they require and what's needed to run. This makes per-test configuration much easier, per-config-setting much easier, and blanket ignore-by-proposal for Winch much easier as well.For spec tests we can't modify the contents of the upstream
*.wastfiles. To handle this they're handled specially whereTestConfigis manually created and manipulated for each spec proposal and the main test suite itself. This enables per-proposal configuration that doesn't leak into any others and makes it more obvious what proposals are doing what.<!--
Please make sure you include the following information:
If this work has been discussed elsewhere, please include a link to that
conversation. If it was discussed in an issue, just mention "issue #...".Explain why this change is needed. If the details are in an issue already,
this can be brief.Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.htmlPlease ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->
alexcrichton requested wasmtime-core-reviewers for a review on PR #9560.
alexcrichton requested fitzgen for a review on PR #9560.
fitzgen submitted PR review:
Very nice!
alexcrichton updated PR #9560.
alexcrichton has enabled auto merge for PR #9560.
alexcrichton merged PR #9560.
Last updated: Dec 13 2025 at 19:03 UTC