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:
2727 - cargo build --verbose --no-default-features --features="rand"
2828 - cargo build --verbose --no-default-features --features="rand serde recovery endomorphism"
2929 - cargo build --verbose --no-default-features --features="fuzztarget recovery"
30- - cargo build --verbose --features=fuzztarget
3130 - cargo build --verbose --features=rand
31+ - cargo test --no-run --features=fuzztarget
3232 - cargo test --verbose --features=rand
3333 - cargo test --verbose --features="rand rand-std"
3434 - cargo test --verbose --features="rand serde"
Original file line number Diff line number Diff line change @@ -444,10 +444,14 @@ mod fuzz_dummy {
444444 SECP256K1_START_NONE , SECP256K1_START_VERIFY , SECP256K1_START_SIGN ,
445445 SECP256K1_SER_COMPRESSED , SECP256K1_SER_UNCOMPRESSED } ;
446446
447+ #[ allow( non_upper_case_globals) ]
448+ pub static secp256k1_context_no_precomp: & Context = & Context ( 0 ) ;
449+
447450 extern "C" {
451+ #[ cfg_attr( not( feature = "external-symbols" ) , link_name = "rustsecp256k1_v0_1_1_ecdh_hash_function_default" ) ]
448452 pub static secp256k1_ecdh_hash_function_default: EcdhHashFn ;
453+ #[ cfg_attr( not( feature = "external-symbols" ) , link_name = "rustsecp256k1_v0_1_1_nonce_function_rfc6979" ) ]
449454 pub static secp256k1_nonce_function_rfc6979: NonceFn ;
450- pub static secp256k1_context_no_precomp: * const Context ;
451455 }
452456
453457 // Contexts
You can’t perform that action at this time.
0 commit comments