Skip to content

Commit 92bad90

Browse files
fanquakePastaPastaPasta
authored andcommitted
Merge bitcoin#28178: fuzz: Generate with random libFuzzer settings
fa3a410 fuzz: Set -rss_limit_mb=8000 for generate as well (MarcoFalke) fa4e396 fuzz: Generate with random libFuzzer settings (MarcoFalke) Pull request description: Sometimes a libFuzzer setting like `-use_value_profile=1` helps [0], sometimes it hurts [1]. [0] bitcoin#20789 (comment) [1] bitcoin#27888 (comment) By picking a random value, it is ensured that at least some of the runs will have the beneficial configuration set. Also, set `-max_total_time` to prevent slow fuzz targets from getting a larger time share, or possibly peg to a single core for a long time and block the python script from exiting for a long time. This can be improved in the future. For example, the python script can exit after some time (bitcoin#20752 (comment)). Alternatively, it can measure if coverage progress was made and run for less time if no progress has been made recently anyway, so that more time can be spent on targets that are new or still make progress. ACKs for top commit: murchandamus: utACK fa3a410 dergoegge: utACK fa3a410 brunoerg: light ACK fa3a410 Tree-SHA512: bfd04a76ca09aec612397bae5f3f263a608faa7087697169bd4c506c8195c4d2dd84ddc7fcd3ebbc75771eab618fad840af819114968ca3668fc730092376768
1 parent 9b6a05d commit 92bad90

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/fuzz/test_runner.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import configparser
1111
import logging
1212
import os
13+
import random
1314
import subprocess
1415
import sys
1516

@@ -207,9 +208,13 @@ def job(command, t):
207208
for target in targets:
208209
target_corpus_dir = os.path.join(corpus_dir, target)
209210
os.makedirs(target_corpus_dir, exist_ok=True)
211+
use_value_profile = int(random.random() < .3)
210212
command = [
211213
os.path.join(build_dir, 'src', 'test', 'fuzz', 'fuzz'),
212-
"-runs=100000",
214+
"-rss_limit_mb=8000",
215+
"-max_total_time=6000",
216+
"-reload=0",
217+
f"-use_value_profile={use_value_profile}",
213218
target_corpus_dir,
214219
]
215220
futures.append(fuzz_pool.submit(job, command, target))

0 commit comments

Comments
 (0)