From d5766f223f627bf2eb731ce8552dfafa2b824378 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Wed, 2 Oct 2019 08:01:27 +0000 Subject: [PATCH] tests: Add corpora suppression (FUZZERS_MISSING_CORPORA) for fuzzers missing in https://github.com/bitcoin-core/qa-assets/tree/master/fuzz_seed_corpus --- test/fuzz/test_runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py index ffebb579e..6bbe45f00 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():