Increase subset fuzzer timeout to 8s
authorEbrahim Byagowi <ebrahim@gnu.org>
Sun, 28 Jul 2019 18:29:09 +0000 (22:59 +0430)
committerGitHub <noreply@github.com>
Sun, 28 Jul 2019 18:29:09 +0000 (22:59 +0430)
Probably we should just remove timeout when running tsan and vaglrind here, the flaky bots

test/fuzzing/run-subset-fuzzer-tests.py

index d431e10..f94c13f 100755 (executable)
@@ -33,7 +33,7 @@ def cmd(command):
                def timeout(p, is_killed):
                        is_killed['value'] = True
                        p.kill()
-               timer = threading.Timer (6, timeout, [p, is_killed])
+               timer = threading.Timer (8, timeout, [p, is_killed])
 
                try:
                        timer.start()