File tree Expand file tree Collapse file tree 7 files changed +221
-585
lines changed Expand file tree Collapse file tree 7 files changed +221
-585
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments