From 30409b87dafc8006c877ed4d22c3f89e834303e6 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Thu, 18 Apr 2024 13:01:59 +0200 Subject: Fix call to print_failed_test() missing last arg Follows up on commit 3abeab87a0cbaaba4a6897dba4c7fcba241adc2a adding the new parameter to the second call to print_failed_test(), which has been broken - leading to TypeError when hit - since that commit. Pick-to: master Change-Id: Ic460b406bbea7a5fe8034c39d1d52ea8955c43e5 Reviewed-by: Friedemann Kleint Reviewed-by: Fabian Kosmale --- scripts/generic/parse_build_log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generic/parse_build_log.py b/scripts/generic/parse_build_log.py index 5d37535a..71ff5dd1 100644 --- a/scripts/generic/parse_build_log.py +++ b/scripts/generic/parse_build_log.py @@ -127,7 +127,7 @@ def parse(lines): test_start_line = -1 elif end_test_crash_re.match(line): logging.debug(f"===> test crashed {line} {test_start_line} {i}") - print_failed_test(lines, test_start_line, i) + print_failed_test(lines, test_start_line, i, already_known_errors) test_start_line = -1 elif is_fatal_timeout(line): logging.debug("===> Matched fatal timeout") -- cgit v1.2.3