Chih-Hung Hsieh | fab4380 | 2020-04-07 14:24:01 -0700 | [diff] [blame^] | 1 | if [ "${TRAVIS_OS_NAME}" == "osx" ]; then |
2 | rvm get head || true | ||||
3 | fi | ||||
4 | |||||
5 | set -e | ||||
6 | |||||
7 | RUST_BACKTRACE=1 cargo test --verbose --features $CLANG_VERSION -- --nocapture | ||||
8 | |||||
9 | if [ "${CLANG_VERSION}" \< "clang_3_7" ]; then | ||||
10 | RUST_BACKTRACE=1 cargo test --verbose --features "$CLANG_VERSION static" -- --nocapture | ||||
11 | fi | ||||
12 | |||||
13 | RUST_BACKTRACE=1 cargo test --verbose --features "$CLANG_VERSION runtime" -- --nocapture |