mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
test: Fuzz merge with -use_value_profile=0 for now
This commit is contained in:
parent
06d469c26b
commit
faa190b1ef
1 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/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
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Run fuzz test targets.
|
"""Run fuzz test targets.
|
||||||
|
@ -279,7 +279,11 @@ def merge_inputs(*, fuzz_pool, corpus, test_list, src_dir, build_dir, merge_dir)
|
||||||
'-merge=1',
|
'-merge=1',
|
||||||
'-shuffle=0',
|
'-shuffle=0',
|
||||||
'-prefer_small=1',
|
'-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(corpus, t),
|
||||||
os.path.join(merge_dir, t),
|
os.path.join(merge_dir, t),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue