1if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
2    rvm get head || true
3fi
4
5set -e
6
7RUST_BACKTRACE=1 cargo test --verbose --features $CLANG_VERSION -- --nocapture
8
9if [ "${CLANG_VERSION}" \< "clang_3_7" ]; then
10    RUST_BACKTRACE=1 cargo test --verbose --features "$CLANG_VERSION static" -- --nocapture
11fi
12
13RUST_BACKTRACE=1 cargo test --verbose --features "$CLANG_VERSION runtime" -- --nocapture
14