From 80036e3300c5fe103c6673dd6e3c741797331825 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 27 Jul 2020 18:46:15 -0700 Subject: [PATCH] Check for dejagnu ERROR. --- scripts/testsuite-filter | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/testsuite-filter b/scripts/testsuite-filter index 4ae3efc1..31ee7f01 100755 --- a/scripts/testsuite-filter +++ b/scripts/testsuite-filter @@ -158,7 +158,8 @@ def read_sum(sum_files): # Parsing current running target. current_target = l.split(" ")[-1].strip() unexpected_result[current_target] = list() - elif l.startswith("FAIL") or l.startswith("XPASS"): + elif l.startswith("FAIL") or l.startswith("XPASS") \ + or l.startswith("ERROR"): unexpected_result[current_target].append(l.strip()) unexpected_results[tool] = unexpected_result # tool -> variation(target) -> list of unexpected result