[fuzz] Increase subset runner timeout for tsan bot
authorEbrahim Byagowi <ebrahim@gnu.org>
Thu, 11 Jul 2019 10:40:36 +0000 (15:10 +0430)
committerGitHub <noreply@github.com>
Thu, 11 Jul 2019 10:40:36 +0000 (15:10 +0430)
Now is flaky let's just increase and maybe investigate later

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

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