aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-12-09 15:20:48 -0500
committerMarcoFalke <falke.marco@gmail.com>2019-12-09 15:22:27 -0500
commit1189b6acab115a7fe7bd67f8b4c6e3f55e53274e (patch)
tree0c02f0f921baf1b505df0ab7e64e79cce3ba38d9 /test
parent347dd76ec87ddbd1913dc7b57729793ac3bb1ab9 (diff)
parent597d10ceb9fd2a118c7e551cd6263379691d9295 (diff)
downloadbitcoin-1189b6acab115a7fe7bd67f8b4c6e3f55e53274e.tar.xz
Merge #17109: tests: Add fuzzing harness for various functions consuming only integrals
597d10ceb9fd2a118c7e551cd6263379691d9295 tests: Add fuzzing harness for various functions consuming only integrals (practicalswift) 575383b3e1361e60ba88738a34d92b1662f915a7 tests: Add corpora suppression (FUZZERS_MISSING_CORPORA) for fuzzers missing in https://github.com/bitcoin-core/qa-assets/tree/master/fuzz_seed_corpus (practicalswift) Pull request description: Add fuzzing harness for various functions consuming only integrals. **Testing this PR** Run: ``` $ CC=clang CXX=clang++ ./configure --enable-fuzz \ --with-sanitizers=address,fuzzer,undefined $ make $ src/test/fuzz/integer ``` Top commit has no ACKs. Tree-SHA512: f0ccbd63671636f8e661385b682e16ad287fef8f92e7f91327ee2093afc36fcd424e1646fe90279388e28a760bcc795766eb80cf6375e0f873efff37fc7e2393
Diffstat (limited to 'test')
-rwxr-xr-xtest/fuzz/test_runner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py
index 6bbe45f00f..f6d84a1dcd 100755
--- a/test/fuzz/test_runner.py
+++ b/test/fuzz/test_runner.py
@@ -20,6 +20,7 @@ FUZZERS_MISSING_CORPORA = [
"block_header_and_short_txids_deserialize",
"fee_rate_deserialize",
"flat_file_pos_deserialize",
+ "integer",
"key_origin_info_deserialize",
"merkle_block_deserialize",
"out_point_deserialize",