mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 11:05:06 +00:00
16 lines
302 B
Bash
Executable File
16 lines
302 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -ex
|
|
TARGET=$1
|
|
|
|
CMD="cargo test --all --no-default-features --target $TARGET"
|
|
|
|
$CMD
|
|
$CMD --release
|
|
|
|
$CMD --features 'stable'
|
|
$CMD --release --features 'stable'
|
|
|
|
$CMD --features 'stable checked musl-reference-tests'
|
|
$CMD --release --features 'stable checked musl-reference-tests'
|