aboutsummaryrefslogtreecommitdiff
path: root/test/fuzz
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-10-12 16:46:55 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-10-12 16:44:41 +0200
commitfaa190b1efbdfdb9b12a7bfa7f732b5471a02e64 (patch)
tree0a44e1466d44ffd17b9e78ae9f3005a9f1831774 /test/fuzz
parent06d469c26b556962e0e8e0f141a576b6aea95564 (diff)
downloadbitcoin-faa190b1efbdfdb9b12a7bfa7f732b5471a02e64.tar.xz
test: Fuzz merge with -use_value_profile=0 for now
Diffstat (limited to 'test/fuzz')
-rwxr-xr-xtest/fuzz/test_runner.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py
index c9975af225..4207c69241 100755
--- a/test/fuzz/test_runner.py
+++ b/test/fuzz/test_runner.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-# Copyright (c) 2019-2021 The Bitcoin Core developers
+# Copyright (c) 2019-present The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Run fuzz test targets.
@@ -279,7 +279,11 @@ def merge_inputs(*, fuzz_pool, corpus, test_list, src_dir, build_dir, merge_dir)
'-merge=1',
'-shuffle=0',
'-prefer_small=1',
- '-use_value_profile=1', # Also done by oss-fuzz https://github.com/google/oss-fuzz/issues/1406#issuecomment-387790487
+ '-use_value_profile=0',
+ # use_value_profile is enabled by oss-fuzz [0], but disabled for
+ # now to avoid bloating the qa-assets git repository [1].
+ # [0] https://github.com/google/oss-fuzz/issues/1406#issuecomment-387790487
+ # [1] https://github.com/bitcoin-core/qa-assets/issues/130#issuecomment-1749075891
os.path.join(corpus, t),
os.path.join(merge_dir, t),
]