Increase subset fuzzer timeout to 16s
To satisfy -valgrind and -tsan bots, very ugly
This commit is contained in:
parent
5b9cf191fe
commit
b31d627f15
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue