Skip to content

Commit 867b920

Browse files
authored
Merge pull request #264 from rust-bitcoin/2020-12--no-extsymb2
redo fuzz target
2 parents 91eea11 + 75d7177 commit 867b920

File tree

7 files changed

+221
-585
lines changed

7 files changed

+221
-585
lines changed

contrib/test.sh

+8-3
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,17 @@ if [ "$DO_FEATURE_MATRIX" = true ]; then
3333
cargo test --all --features="$feature"
3434
done
3535

36-
# Other combos
37-
RUSTFLAGS='--cfg=rust_secp_fuzz' cargo test --no-run --all
38-
RUSTFLAGS='--cfg=rust_secp_fuzz' cargo test --no-run --all --features="recovery"
36+
# Other combos
37+
RUSTFLAGS='--cfg=rust_secp_fuzz' RUSTDOCFLAGS=$RUSTFLAGS cargo test --all
38+
RUSTFLAGS='--cfg=rust_secp_fuzz' RUSTDOCFLAGS=$RUSTFLAGS cargo test --all --features="$FEATURES"
3939
cargo test --all --features="rand rand-std"
4040
cargo test --all --features="rand serde"
4141

42+
if [ "$DO_BENCH" = true ]; then # proxy for us having a nightly compiler
43+
cargo test --all --all-features
44+
RUSTFLAGS='--cfg=rust_secp_fuzz' RUSTDOCFLAGS='--cfg=rust_secp_fuzz' cargo test --all --all-features
45+
fi
46+
4247
# Examples
4348
cargo run --example sign_verify
4449
cargo run --example sign_verify_recovery --features=recovery

0 commit comments

Comments
 (0)