File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ if [ "$DO_FEATURE_MATRIX" = true ]; then
34
34
done
35
35
36
36
# Other combos
37
- RUSTFLAGS=' --cfg=rust_secp_fuzz' cargo test --all
38
- RUSTFLAGS=' --cfg=rust_secp_fuzz' cargo test --all --features=" $FEATURES "
37
+ RUSTFLAGS=' --cfg=rust_secp_fuzz' RUSTDOCFLAGS= $RUSTFLAGS cargo test --all
38
+ RUSTFLAGS=' --cfg=rust_secp_fuzz' RUSTDOCFLAGS= $RUSTFLAGS cargo test --all --features=" $FEATURES "
39
39
cargo test --all --features=" rand rand-std"
40
40
cargo test --all --features=" rand serde"
41
41
Original file line number Diff line number Diff line change @@ -118,9 +118,8 @@ mod fuzz_dummy {
118
118
) -> c_int {
119
119
let sig_sl = slice:: from_raw_parts ( sig as * const u8 , 65 ) ;
120
120
let msg_sl = slice:: from_raw_parts ( msg32 as * const u8 , 32 ) ;
121
- println ! ( "HMM0" ) ;
122
121
123
- if sig_sl[ 64 ] > 4 {
122
+ if sig_sl[ 64 ] >= 4 {
124
123
return 0 ;
125
124
}
126
125
// Pull the original pk out of the siganture
You can’t perform that action at this time.
0 commit comments