Fix bug
Tests / Run-Tests (push) Failing after 3s Details
Benchmarks / Run-Benchmarks (push) Failing after 11s Details

main
drunkendog 2023-09-25 20:05:49 +01:00
parent f36cb77326
commit 1eea2a74eb
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ for file_name in glob.glob("*.c", recursive=False):
if should_continue != "y":
continue
subprocess.run(["gcc", "-o", "a.out", "-std=c11", "-Wall", "-g", file_name], check=True)
with open(next(x for x in file_list if os.path.splitext(file_name)[0] in x)) as f:
with open(next(x for x in file_list if os.path.splitext(file_name)[0] == x)) as f:
to_run = f.read().strip().split("\n\n")
total_tests, passed_tests = 0, 0
for x in to_run: