Fix bug again
Tests / Run-Tests (push) Successful in 7s Details
Benchmarks / Run-Benchmarks (push) Successful in 18s Details

main
drunkendog 2023-09-25 20:07:52 +01:00
parent 1eea2a74eb
commit 3de8d66547
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": if should_continue != "y":
continue continue
subprocess.run(["gcc", "-o", "a.out", "-std=c11", "-Wall", "-g", file_name], check=True) 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] == x)) as f: with open(next(x for x in file_list if os.path.splitext(file_name)[0] == os.path.basename(os.path.splitext(x)[0]))) as f:
to_run = f.read().strip().split("\n\n") to_run = f.read().strip().split("\n\n")
total_tests, passed_tests = 0, 0 total_tests, passed_tests = 0, 0
for x in to_run: for x in to_run: