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-06 09:11:02 +0000 |
commit | d5766f223f627bf2eb731ce8552dfafa2b824378 (patch) | |
tree | b1966a2537e5c1878b6bad4973415d342dac8720 /test/fuzz | |
parent | e75ecb91c730115290e1201371492c2cd334e9b4 (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/fuzz')
-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 ffebb579e7..6bbe45f00f 100755 --- a/test/fuzz/test_runner.py +++ b/test/fuzz/test_runner.py @@ -32,6 +32,8 @@ FUZZERS_MISSING_CORPORA = [ "script_deserialize", "sub_net_deserialize", "tx_in_deserialize", + "tx_in", + "tx_out", ] def main(): |