aboutsummaryrefslogtreecommitdiff
path: root/test/fuzz
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-01-28 14:54:53 +0100
committerMarcoFalke <falke.marco@gmail.com>2021-01-28 14:38:48 +0100
commitfabeb5b9c7f678ab3bc24c1860f8514ac52bb56f (patch)
treed77dbd1869d7237c726f4864de4261ed41a496a8 /test/fuzz
parent68692d33c6c51e4d0e873d2626ff25567432c71e (diff)
downloadbitcoin-fabeb5b9c7f678ab3bc24c1860f8514ac52bb56f.tar.xz
fuzz: Disable shuffle when merge=1
Diffstat (limited to 'test/fuzz')
-rwxr-xr-xtest/fuzz/test_runner.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py
index ab766b4a45..ba0f3cfd44 100755
--- a/test/fuzz/test_runner.py
+++ b/test/fuzz/test_runner.py
@@ -220,6 +220,8 @@ def merge_inputs(*, fuzz_pool, corpus, test_list, build_dir, merge_dir):
args = [
os.path.join(build_dir, 'src', 'test', 'fuzz', 'fuzz'),
'-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
os.path.join(corpus, t),
os.path.join(merge_dir, t),