rust-secp256k1-unsafe-fast/contrib/test.sh

78 lines
2.6 KiB
Bash
Raw Normal View History

2020-11-10 23:36:07 +00:00
#!/bin/sh -ex
FEATURES="bitcoin_hashes endomorphism global-context lowmemory rand rand-std recovery serde"
# Use toolchain if explicitly specified
if [ -n "$TOOLCHAIN" ]
then
alias cargo="cargo +$TOOLCHAIN"
fi
cargo --version
rustc --version
# Defaults / sanity checks
cargo build --verbose
cargo test --verbose
if [ "$DO_FEATURE_MATRIX" = true ]; then
cargo build --verbose --no-default-features
#This doesn't work but probably should --andrew
#cargo test --verbose --no-default-features
# All features
cargo build --verbose --no-default-features --features="$FEATURES"
cargo test --verbose --features="$FEATURES"
# Single features
for feature in ${FEATURES}
do
cargo build --verbose --no-default-features --features="$feature"
cargo test --verbose --features="$feature"
done
# Other combos
RUSTFLAGS='--cfg=rust_secp_fuzz' cargo test --no-run --verbose
RUSTFLAGS='--cfg=rust_secp_fuzz' cargo test --no-run --verbose --features="recovery"
2020-11-10 23:36:07 +00:00
cargo test --verbose --features="rand rand-std"
cargo test --verbose --features="rand serde"
# Examples
cargo run --example sign_verify
cargo run --example sign_verify_recovery --features=recovery
cargo run --example generate_keys --features=rand
fi
# Docs
if [ "$DO_DOCS" = true ]; then
cargo doc --verbose --features="$FEATURES"
fi
# Webassembly stuff
if [ "$DO_WASM" = true ]; then
clang --version &&
CARGO_TARGET_DIR=wasm cargo install --verbose --force wasm-pack &&
printf '\n[lib]\ncrate-type = ["cdylib", "rlib"]\n' >> Cargo.toml &&
CC=clang-9 wasm-pack build &&
CC=clang-9 wasm-pack test --node;
fi
# Address Sanitizer
if [ "$DO_ASAN" = true ]; then
cargo clean
CC='clang -fsanitize=address -fno-omit-frame-pointer' \
RUSTFLAGS='-Zsanitizer=address -Clinker=clang -Cforce-frame-pointers=yes' \
ASAN_OPTIONS='detect_leaks=1 detect_invalid_pointer_pairs=1 detect_stack_use_after_return=1' \
cargo test --lib --verbose --features="$FEATURES" -Zbuild-std --target x86_64-unknown-linux-gnu &&
cargo clean &&
CC='clang -fsanitize=memory -fno-omit-frame-pointer' \
RUSTFLAGS='-Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes' \
cargo test --lib --verbose --features="$FEATURES" -Zbuild-std --target x86_64-unknown-linux-gnu &&
cd no_std_test && cargo run --release | grep -q "Verified Successfully"
fi
# Bench
if [ "$DO_BENCH" = true ]; then
cargo bench --features="unstable"
fi