diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2019-10-02 08:01:27 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-12-16 22:50:49 +0000 |
commit | 22d9bae36f2a164acf35765231f1d93364c1c4a9 (patch) | |
tree | 34710e205bcb80855d70c691242402c7526e9368 /test | |
parent | 94c6f2bba45100abeaf310057a989f8644115eaf (diff) |
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')
-rwxr-xr-x | test/fuzz/test_runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py index 8b503d83bf..bbdd047465 100755 --- a/test/fuzz/test_runner.py +++ b/test/fuzz/test_runner.py @@ -15,12 +15,14 @@ import logging # Fuzzers known to lack a seed corpus in https://github.com/bitcoin-core/qa-assets/tree/master/fuzz_seed_corpus FUZZERS_MISSING_CORPORA = [ "addr_info_deserialize", + "base_encode_decode", "block", "block_file_info_deserialize", "block_filter_deserialize", "block_header_and_short_txids_deserialize", "fee_rate_deserialize", "flat_file_pos_deserialize", + "hex", "integer", "key_origin_info_deserialize", "merkle_block_deserialize", |