Increase subset fuzzer timeout to 16s

To satisfy -valgrind and -tsan bots, very ugly
pull/1902/head
Ebrahim Byagowi 6 years ago committed by GitHub
parent 5b9cf191fe
commit b31d627f15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/fuzzing/run-subset-fuzzer-tests.py

@ -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…
Cancel
Save