summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2024-04-18 13:01:59 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2024-04-19 10:21:17 +0200
commit30409b87dafc8006c877ed4d22c3f89e834303e6 (patch)
tree03c11adba68066c444c446144cbfc6948d51753f
parent220ce2f82bfae5f713729ba7da74e8db73ccf9e7 (diff)
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 <Friedemann.Kleint@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
-rw-r--r--scripts/generic/parse_build_log.py2
1 files changed, 1 insertions, 1 deletions
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")