Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move wast tests to their own test suite #8598

Merged
merged 3 commits into from
May 13, 2024

Commits on May 12, 2024

  1. Move wast tests to their own test suite

    This commit moves testing of `*.wast` files out of the `all` test suite
    binary and into its own separate binary. The motivation for this is
    well-described in bytecodealliance#4861 with one of the chief reasons being that if the
    test suite is run and then a new file is added re-running the test suite
    won't see the file.
    
    The `libtest-mimic` crate provides an easy way of regaining most of the
    features of the `libtest` harness such as parallel test execution and
    filters, meaning that it's pretty easy to switch everything over. The
    only slightly-tricky bit was redoing the filter for whether a test is
    ignored or not, but most of the pieces were copied over from the
    previous `build.rs` logic.
    
    Closes bytecodealliance#4861
    alexcrichton committed May 12, 2024
    Configuration menu
    Copy the full SHA
    ae650d0 View commit details
    Browse the repository at this point in the history
  2. Fix the all suite

    alexcrichton committed May 12, 2024
    Configuration menu
    Copy the full SHA
    c5f981b View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Review comments

    alexcrichton committed May 13, 2024
    Configuration menu
    Copy the full SHA
    5aedde1 View commit details
    Browse the repository at this point in the history