[test] Increase subset timeout

No random timeout please
This commit is contained in:
Ebrahim Byagowi 2020-01-25 00:32:46 +03:30 committed by GitHub
parent d1830437c9
commit 5897697250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def cmd(command):
def timeout(p, is_killed):
is_killed['value'] = True
p.kill()
timeout_seconds = int (os.environ.get ("HB_TEST_SUBSET_FUZZER_TIMEOUT", "8"))
timeout_seconds = int (os.environ.get ("HB_TEST_SUBSET_FUZZER_TIMEOUT", "12"))
timer = threading.Timer (timeout_seconds, timeout, [p, is_killed])
try: