Increase subset fuzzer timeout to 8s

Probably we should just remove timeout when running tsan and vaglrind here, the flaky bots
This commit is contained in:
Ebrahim Byagowi 2019-07-28 22:59:09 +04:30 committed by GitHub
parent 87454c447d
commit e21bdf500d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()