[SCons] Make unrecognized C compiler fatal and update formatting

This commit is contained in:
Ingmar Schoegl
2022-06-12 19:54:01 -04:00
committed by Bryan Weber
parent e8243aedbc
commit 994445a0b6
4 changed files with 18 additions and 17 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ def addTestProgram(subdir, progName, env_vars={}):
code = subprocess.call(cmd, env=env['ENV'], cwd=workDir)
if code:
logger.failed(f"Test '{progName}' exited with code {code}")
logger.failed(f"Test {progName!r} exited with code {code}")
if env["fast_fail_tests"]:
sys.exit(1)
else: