From 7e071df5cdab7bce8524411104a67e5ee70bc740 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sat, 26 Aug 2023 14:32:54 -0400 Subject: [PATCH] [SCons] Missing test output files are an "error", not "info" --- site_scons/buildutils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site_scons/buildutils.py b/site_scons/buildutils.py index 078400a7a..c6a6e1d1d 100644 --- a/site_scons/buildutils.py +++ b/site_scons/buildutils.py @@ -743,7 +743,7 @@ def regression_test(target: "LFSNode", source: "LFSNode", env: "SCEnvironment"): for blessed, output in comparisons: if not dir.joinpath(output).is_file(): - logger.info(f"Output file '{output}' not found", print_level=False) + logger.error(f"Output file '{output}' not found", print_level=False) logger.error("FAILED", print_level=False) diff |= TestResult.FAIL continue @@ -755,7 +755,7 @@ def regression_test(target: "LFSNode", source: "LFSNode", env: "SCEnvironment"): for blessed, output in env["test_profiles"]: if not dir.joinpath(output).is_file(): - logger.info(f"Output file '{output}' not found", print_level=False) + logger.error(f"Output file '{output}' not found", print_level=False) logger.error("FAILED", print_level=False) diff |= TestResult.FAIL continue