From 9b120bb3aa2ef0d9d533779c9754bfb0393782e1 Mon Sep 17 00:00:00 2001 From: David Harris Date: Wed, 3 Jul 2024 16:34:14 -0700 Subject: [PATCH] fix timeout in iterelf --- bin/iterelf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/iterelf b/bin/iterelf index 02b53a230..959a98a59 100755 --- a/bin/iterelf +++ b/bin/iterelf @@ -94,7 +94,7 @@ with Pool(processes=min(len(ElfList),multiprocessing.cpu_count(), ImperasDVLicen num_fail+=result.get(timeout=TIMEOUT_DUR) except TimeoutError: num_fail+=1 - print(f"{bcolors.FAIL}%s_%s: Timeout - runtime exceeded %d seconds{bcolors.ENDC}" % (elf, TIMEOUT_DUR)) + print(f"{bcolors.FAIL}%s: Timeout - runtime exceeded %d seconds{bcolors.ENDC}" % (elf, TIMEOUT_DUR)) print("Completed %d tests with %d failures" % (len(ElfList), num_fail)) # *** generate memfiles \ No newline at end of file