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:
parent
87454c447d
commit
e21bdf500d
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user