From 58976972508d6f6d564cb3305bbb6f706bd1ba33 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sat, 25 Jan 2020 00:32:46 +0330 Subject: [PATCH] [test] Increase subset timeout No random timeout please --- test/fuzzing/run-subset-fuzzer-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzzing/run-subset-fuzzer-tests.py b/test/fuzzing/run-subset-fuzzer-tests.py index f290e6e6e..9e3bb84d3 100755 --- a/test/fuzzing/run-subset-fuzzer-tests.py +++ b/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() - 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: