blob: df61c35a6c3c03f4d93442431920b2d3bb3610c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# This script takes care of testing your crate
set -ex
main() {
# Add a cfg spec to allow disabling specific tests under CI.
if [ "$TRAVIS" = true ]; then
export RUSTFLAGS=--cfg=travis
fi
# Build debug and release targets
cross build --target $TARGET
cross build --target $TARGET --release
if [ ! -z $DISABLE_TESTS ]; then
return
fi
# Run tests on debug and release targets.
cross test --target $TARGET
cross test --target $TARGET --release
}
# we don't run the "test phase" when doing deploys
if [ -z $TRAVIS_TAG ]; then
main
fi
|