From b31d627f151c8eeeb12ed84c3282392d6adbc5b4 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sun, 11 Aug 2019 23:34:48 +0430 Subject: [PATCH] Increase subset fuzzer timeout to 16s To satisfy -valgrind and -tsan bots, very ugly --- test/fuzzing/run-subset-fuzzer-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzzing/run-subset-fuzzer-tests.py b/test/fuzzing/run-subset-fuzzer-tests.py index f94c13ffe..820519f09 100755 --- a/test/fuzzing/run-subset-fuzzer-tests.py +++ b/test/fuzzing/run-subset-fuzzer-tests.py @@ -33,7 +33,7 @@ def cmd(command): def timeout(p, is_killed): is_killed['value'] = True p.kill() - timer = threading.Timer (8, timeout, [p, is_killed]) + timer = threading.Timer (16, timeout, [p, is_killed]) try: timer.start()