File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ script:
27
27
- cargo build --verbose --no-default-features --features="rand"
28
28
- cargo build --verbose --no-default-features --features="rand serde recovery endomorphism"
29
29
- cargo build --verbose --no-default-features --features="fuzztarget recovery"
30
- - cargo build --verbose --features=fuzztarget
31
30
- cargo build --verbose --features=rand
31
+ - cargo test --no-run --features=fuzztarget
32
32
- cargo test --verbose --features=rand
33
33
- cargo test --verbose --features="rand rand-std"
34
34
- cargo test --verbose --features="rand serde"
Original file line number Diff line number Diff line change @@ -444,10 +444,14 @@ mod fuzz_dummy {
444
444
SECP256K1_START_NONE , SECP256K1_START_VERIFY , SECP256K1_START_SIGN ,
445
445
SECP256K1_SER_COMPRESSED , SECP256K1_SER_UNCOMPRESSED } ;
446
446
447
+ #[ allow( non_upper_case_globals) ]
448
+ pub static secp256k1_context_no_precomp: & Context = & Context ( 0 ) ;
449
+
447
450
extern "C" {
451
+ #[ cfg_attr( not( feature = "external-symbols" ) , link_name = "rustsecp256k1_v0_1_1_ecdh_hash_function_default" ) ]
448
452
pub static secp256k1_ecdh_hash_function_default: EcdhHashFn ;
453
+ #[ cfg_attr( not( feature = "external-symbols" ) , link_name = "rustsecp256k1_v0_1_1_nonce_function_rfc6979" ) ]
449
454
pub static secp256k1_nonce_function_rfc6979: NonceFn ;
450
- pub static secp256k1_context_no_precomp: * const Context ;
451
455
}
452
456
453
457
// Contexts
You can’t perform that action at this time.
0 commit comments