Skip to content

Commit faa190b

Browse files
author
MarcoFalke
committed
test: Fuzz merge with -use_value_profile=0 for now
1 parent 06d469c commit faa190b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/fuzz/test_runner.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2019-2021 The Bitcoin Core developers
2+
# Copyright (c) 2019-present The Bitcoin Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55
"""Run fuzz test targets.
@@ -279,7 +279,11 @@ def merge_inputs(*, fuzz_pool, corpus, test_list, src_dir, build_dir, merge_dir)
279279
'-merge=1',
280280
'-shuffle=0',
281281
'-prefer_small=1',
282-
'-use_value_profile=1', # Also done by oss-fuzz https://github.com/google/oss-fuzz/issues/1406#issuecomment-387790487
282+
'-use_value_profile=0',
283+
# use_value_profile is enabled by oss-fuzz [0], but disabled for
284+
# now to avoid bloating the qa-assets git repository [1].
285+
# [0] https://github.com/google/oss-fuzz/issues/1406#issuecomment-387790487
286+
# [1] https://github.com/bitcoin-core/qa-assets/issues/130#issuecomment-1749075891
283287
os.path.join(corpus, t),
284288
os.path.join(merge_dir, t),
285289
]

0 commit comments

Comments
 (0)