This makes it possible to run a subset of the tests with e.g. `./ci/run-experimental-x64-ci.sh -- wast::Cranelift::spec`.
19 lines
585 B
Bash
Executable File
19 lines
585 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cargo +nightly \
|
|
-Zfeatures=all -Zpackage-features \
|
|
test \
|
|
--features test-programs/test_programs \
|
|
--features experimental_x64 \
|
|
--all \
|
|
--exclude wasmtime-lightbeam \
|
|
--exclude peepmatic \
|
|
--exclude peepmatic-automata \
|
|
--exclude peepmatic-fuzzing \
|
|
--exclude peepmatic-macro \
|
|
--exclude peepmatic-runtime \
|
|
--exclude peepmatic-test \
|
|
--exclude peepmatic-souper \
|
|
--exclude lightbeam \
|
|
$@
|