[go: up one dir, main page]

libm 0.2.0

libm in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env sh

set -ex
TARGET=$1

CMD="cargo test --all --target $TARGET"

# stable by default
$CMD
$CMD --release

# unstable with a feature
$CMD --features 'unstable'
$CMD --release --features 'unstable'

# also run the reference tests
$CMD --features 'unstable musl-reference-tests'
$CMD --release --features 'unstable musl-reference-tests'