aboutsummaryrefslogtreecommitdiff
path: root/test/fuzz/test_runner.py
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2019-10-02 08:01:27 +0000
committerpracticalswift <[email protected]>2019-12-10 16:39:40 +0000
commit0dc5907d0f0490036c50cb7aee19e31075bbf402 (patch)
tree83ccd539a4aed3c5707bc9cb57af2becaf62dc47 /test/fuzz/test_runner.py
parentMerge #17109: tests: Add fuzzing harness for various functions consuming only... (diff)
downloaddiscoin-0dc5907d0f0490036c50cb7aee19e31075bbf402.tar.xz
discoin-0dc5907d0f0490036c50cb7aee19e31075bbf402.zip
tests: Add corpora suppression (FUZZERS_MISSING_CORPORA) for fuzzers missing in https://github.com/bitcoin-core/qa-assets/tree/master/fuzz_seed_corpus
Diffstat (limited to 'test/fuzz/test_runner.py')
-rwxr-xr-xtest/fuzz/test_runner.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py
index f6d84a1dc..2d255c0bb 100755
--- a/test/fuzz/test_runner.py
+++ b/test/fuzz/test_runner.py
@@ -24,6 +24,10 @@ FUZZERS_MISSING_CORPORA = [
"key_origin_info_deserialize",
"merkle_block_deserialize",
"out_point_deserialize",
+ "parse_hd_keypath",
+ "parse_numbers",
+ "parse_script",
+ "parse_univalue",
"partial_merkle_tree_deserialize",
"partially_signed_transaction_deserialize",
"prefilled_transaction_deserialize",
@@ -32,8 +36,8 @@ FUZZERS_MISSING_CORPORA = [
"pub_key_deserialize",
"script_deserialize",
"sub_net_deserialize",
- "tx_in_deserialize",
"tx_in",
+ "tx_in_deserialize",
"tx_out",
]