blob: ed253ab0d10abe1374a3b6a7abc6b1d4135e25fc [file] [log] [blame]
Jeff Vander Stoepfb178dc2020-12-04 13:55:39 +01001#!/usr/bin/env sh
2
3set -ex
4TARGET=$1
5
6CMD="cargo test --all --target $TARGET"
7
8# stable by default
9$CMD
10$CMD --release
11
12# unstable with a feature
13$CMD --features 'unstable'
14$CMD --release --features 'unstable'
15
16# also run the reference tests
17$CMD --features 'unstable musl-reference-tests'
18$CMD --release --features 'unstable musl-reference-tests'