diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-04-03 08:30:41 +0800 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-04-03 08:30:40 +0800 |
commit | facc332dc587898cbc582a6f66dba498ae4a634e (patch) | |
tree | bd8d205d00d5bb3ff4e351ed64197ce8bd31dda9 /test/fuzz | |
parent | dce6f3b29b4197b8eea91f5919d56eb222ea8959 (diff) |
fuzz: Avoid running over all inputs after merging them
Diffstat (limited to 'test/fuzz')
-rwxr-xr-x | test/fuzz/test_runner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py index 1786c39c36..bb93060739 100755 --- a/test/fuzz/test_runner.py +++ b/test/fuzz/test_runner.py @@ -131,6 +131,7 @@ def main(): build_dir=config["environment"]["BUILDDIR"], merge_dir=args.m_dir, ) + return run_once( corpus=args.seed_dir, |