this repo has no description

Remove spurious print from compiler_tests

authored by bernsteinbear.com and committed by

Max Bernstein 00845e95 6fafd59e

-1
-1
compiler_tests.py
··· 24 24 with open(os.path.join(dirname, "cli.c"), "r") as f: 25 25 c_file.write(f.read()) 26 26 with tempfile.NamedTemporaryFile(mode="w", suffix=".out", delete=False) as out_file: 27 - print(" ".join([*cc, *cflags, "-o", out_file.name, c_file.name])) 28 27 subprocess.run([*cc, *cflags, "-o", out_file.name, c_file.name], check=True) 29 28 return out_file.name 30 29