diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-04-05 04:46:10 +0800 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-04-05 04:46:12 +0800 |
commit | a3b61cf6416387eaac568b53451a0aebe128dfe1 (patch) | |
tree | a38c7e2aff3c1c391781059ed940386f060d5366 | |
parent | 4839560ee1c12d162605f8eade75e63c581d8688 (diff) | |
parent | facc332dc587898cbc582a6f66dba498ae4a634e (diff) |
Merge #18509: fuzz: Avoid running over all inputs after merging them
facc332dc587898cbc582a6f66dba498ae4a634e fuzz: Avoid running over all inputs after merging them (MarcoFalke)
Pull request description:
This cuts the time it takes to merge inputs by half
ACKs for top commit:
practicalswift:
ACK facc332dc587898cbc582a6f66dba498ae4a634e
Tree-SHA512: bb22992c463dd985d3b1e9b8908c591d0c8e620c38eba0a932d880f87133bfe4ca2036b166c4f79b92ddf7940f56c044e9cb8cc50309c74204df122b369c167d
-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, |