Update run.sh

This commit is contained in:
Lokathor 2019-09-05 08:36:08 -06:00
parent 06184b8d10
commit de3480c3c2

View file

@ -5,11 +5,14 @@ TARGET=$1
CMD="cargo test --all --target $TARGET"
# stable by default
$CMD
$CMD --release
$CMD --features 'stable'
$CMD --release --features 'stable'
# unstable with a feature
$CMD --features 'unstable'
$CMD --release --features 'unstable'
$CMD --features 'stable checked musl-reference-tests'
$CMD --release --features 'stable checked musl-reference-tests'
# also run the reference tests
$CMD --features 'unstable musl-reference-tests'
$CMD --release --features 'unstable musl-reference-tests'