From 4493f44e589367d2ef55cfa322f2b617a3610e76 Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Sun, 26 Jan 2025 23:05:38 -0500 Subject: [PATCH] Remove spurious print from compiler_tests --- compiler_tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/compiler_tests.py b/compiler_tests.py index fbfc09b5..76521cc8 100644 --- a/compiler_tests.py +++ b/compiler_tests.py @@ -24,7 +24,6 @@ def compile_to_binary(source: str, memory: int, debug: bool) -> str: with open(os.path.join(dirname, "cli.c"), "r") as f: c_file.write(f.read()) with tempfile.NamedTemporaryFile(mode="w", suffix=".out", delete=False) as out_file: - print(" ".join([*cc, *cflags, "-o", out_file.name, c_file.name])) subprocess.run([*cc, *cflags, "-o", out_file.name, c_file.name], check=True) return out_file.name