diff options
| author | MarcoFalke <[email protected]> | 2020-04-03 08:30:41 +0800 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-04-03 08:30:40 +0800 |
| commit | facc332dc587898cbc582a6f66dba498ae4a634e (patch) | |
| tree | bd8d205d00d5bb3ff4e351ed64197ce8bd31dda9 /test/fuzz/test_runner.py | |
| parent | Merge #18383: refactor: Check for overflow when calculating sum of tx outputs (diff) | |
| download | discoin-facc332dc587898cbc582a6f66dba498ae4a634e.tar.xz discoin-facc332dc587898cbc582a6f66dba498ae4a634e.zip | |
fuzz: Avoid running over all inputs after merging them
Diffstat (limited to 'test/fuzz/test_runner.py')
| -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 1786c39c3..bb9306073 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, |