diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-11-14 14:01:05 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-11-14 13:50:20 -0500 |
commit | fa2ec9f4518c1da3ab3592537c6cd204693a6069 (patch) | |
tree | 3f14cba908f6427d71412cb0f14e5f1f3c2e9ff8 /test/fuzz | |
parent | fa6e01b2f3cd8523a95bd1906ac5e62ee3cbf319 (diff) |
fuzz: Bump timeout in test_runner to accomodate for slow arm64 CPUs
Diffstat (limited to 'test/fuzz')
-rwxr-xr-x | test/fuzz/test_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzz/test_runner.py b/test/fuzz/test_runner.py index f19cf924d2..fde99fe496 100755 --- a/test/fuzz/test_runner.py +++ b/test/fuzz/test_runner.py @@ -78,7 +78,7 @@ def main(): os.path.join(config["environment"]["BUILDDIR"], 'src', 'test', 'fuzz', test_list_selection[0]), '-help=1', ], - timeout=1, + timeout=10, check=True, stderr=subprocess.PIPE, universal_newlines=True, |