80 lines
2.5 KiB
Bash
Executable File
80 lines
2.5 KiB
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -ex
|
|
|
|
: "${TARGET?The TARGET environment variable must be set.}"
|
|
|
|
echo "Running tests for target: ${TARGET}, Rust version=${TRAVIS_RUST_VERSION}"
|
|
export RUST_BACKTRACE=1
|
|
export RUST_TEST_THREADS=1
|
|
export RUST_TEST_NOCAPTURE=1
|
|
|
|
# FIXME: workaround cargo breaking Travis-CI again:
|
|
# https://github.com/rust-lang/cargo/issues/5721
|
|
if [ "$TRAVIS" = "true" ]
|
|
then
|
|
export TERM=dumb
|
|
fi
|
|
|
|
# Runs jemalloc tests when building jemalloc-sys (runs "make check"):
|
|
if [ "${NO_JEMALLOC_TESTS}" = "1" ]
|
|
then
|
|
echo "jemalloc's tests are not run"
|
|
else
|
|
export JEMALLOC_SYS_RUN_JEMALLOC_TESTS=1
|
|
fi
|
|
|
|
cargo build --target "${TARGET}"
|
|
cargo test --target "${TARGET}"
|
|
cargo test --target "${TARGET}" --features profiling
|
|
cargo test --target "${TARGET}" --features debug
|
|
cargo test --target "${TARGET}" --features stats
|
|
cargo test --target "${TARGET}" --features 'debug profiling'
|
|
|
|
cargo test --target "${TARGET}" \
|
|
--features unprefixed_malloc_on_supported_platforms
|
|
cargo test --target "${TARGET}" --no-default-features
|
|
cargo test --target "${TARGET}" --no-default-features \
|
|
--features background_threads_runtime_support
|
|
|
|
if [ "${NOBGT}" = "1" ]
|
|
then
|
|
echo "enabling background threads by default at run-time is not tested"
|
|
else
|
|
cargo test --target "${TARGET}" --features background_threads
|
|
fi
|
|
|
|
cargo test --target "${TARGET}" --release
|
|
cargo test --target "${TARGET}" --manifest-path jemalloc-sys/Cargo.toml
|
|
cargo test --target "${TARGET}" \
|
|
--manifest-path jemalloc-sys/Cargo.toml \
|
|
--features unprefixed_malloc_on_supported_platforms
|
|
|
|
# FIXME: jemalloc-ctl fails in the following targets
|
|
case "${TARGET}" in
|
|
"i686-unknown-linux-musl") ;;
|
|
"x86_64-unknown-linux-musl") ;;
|
|
*)
|
|
|
|
cargo test --target "${TARGET}" \
|
|
--manifest-path jemalloc-ctl/Cargo.toml \
|
|
--no-default-features
|
|
# FIXME: cross fails to pass features to jemalloc-ctl
|
|
# ${CARGO_CMD} test --target "${TARGET}" \
|
|
# --manifest-path jemalloc-ctl \
|
|
# --no-default-features --features use_std
|
|
;;
|
|
esac
|
|
|
|
cargo test --target "${TARGET}" --manifest-path jemallocator-global/Cargo.toml
|
|
cargo test --target "${TARGET}" \
|
|
--manifest-path jemallocator-global/Cargo.toml \
|
|
--features force_global_jemalloc
|
|
|
|
# FIXME: Re-enable following test when allocator API is stable again.
|
|
# if [ "${TRAVIS_RUST_VERSION}" = "nightly" ]
|
|
# then
|
|
# # The Alloc trait is unstable:
|
|
# ${CARGO_CMD} test --target "${TARGET}" --features alloc_trait
|
|
# fi
|