2019-01-24 16:37:55 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
2020-10-07 15:46:48 +00:00
|
|
|
FEATURES="base64 bitcoinconsensus use-serde rand"
|
2019-01-24 16:37:55 +00:00
|
|
|
|
2020-12-28 18:57:43 +00:00
|
|
|
# Pin `cc` for Rust 1.29
|
2021-01-01 20:03:20 +00:00
|
|
|
if [ -n "$PIN_VERSIONS" ]; then
|
2020-12-28 18:57:43 +00:00
|
|
|
cargo generate-lockfile --verbose
|
|
|
|
cargo update -p cc --precise "1.0.41" --verbose
|
|
|
|
cargo update -p serde --precise "1.0.98" --verbose
|
|
|
|
cargo update -p serde_derive --precise "1.0.98" --verbose
|
|
|
|
fi
|
|
|
|
|
2019-07-26 19:23:02 +00:00
|
|
|
if [ "$DO_COV" = true ]
|
|
|
|
then
|
|
|
|
export RUSTFLAGS="-C link-dead-code"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2019-01-24 16:37:55 +00:00
|
|
|
# Use toolchain if explicitly specified
|
|
|
|
if [ -n "$TOOLCHAIN" ]
|
|
|
|
then
|
|
|
|
alias cargo="cargo +$TOOLCHAIN"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Test without any features first
|
2020-10-07 15:46:48 +00:00
|
|
|
cargo test --verbose --no-default-features
|
|
|
|
# Then test with the default features
|
2019-01-24 16:37:55 +00:00
|
|
|
cargo test --verbose
|
|
|
|
|
|
|
|
# Test each feature
|
|
|
|
for feature in ${FEATURES}
|
|
|
|
do
|
|
|
|
cargo test --verbose --features="$feature"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Fuzz if told to
|
|
|
|
if [ "$DO_FUZZ" = true ]
|
|
|
|
then
|
|
|
|
(
|
|
|
|
cd fuzz
|
|
|
|
cargo test --verbose
|
|
|
|
./travis-fuzz.sh
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Bench if told to
|
|
|
|
if [ "$DO_BENCH" = true ]
|
|
|
|
then
|
|
|
|
cargo bench --features unstable
|
|
|
|
fi
|
2019-08-18 16:26:52 +00:00
|
|
|
|
|
|
|
# Use as dependency if told to
|
|
|
|
if [ -n "$AS_DEPENDENCY" ]
|
|
|
|
then
|
|
|
|
cargo new dep_test
|
|
|
|
cd dep_test
|
|
|
|
echo 'bitcoin = { path = "..", features = ["use-serde"] }' >> Cargo.toml
|
2020-09-10 17:55:47 +00:00
|
|
|
|
2020-09-10 20:06:10 +00:00
|
|
|
# Pin `cc` for Rust 1.29
|
2021-01-01 20:03:20 +00:00
|
|
|
if [ -n "$PIN_VERSIONS" ]; then
|
2020-09-10 17:55:47 +00:00
|
|
|
cargo generate-lockfile --verbose
|
|
|
|
cargo update -p cc --precise "1.0.41" --verbose
|
2020-12-28 18:57:43 +00:00
|
|
|
cargo update -p serde --precise "1.0.98" --verbose
|
|
|
|
cargo update -p serde_derive --precise "1.0.98" --verbose
|
2020-09-10 17:55:47 +00:00
|
|
|
fi
|
|
|
|
|
2019-08-18 16:26:52 +00:00
|
|
|
cargo test --verbose
|
|
|
|
fi
|