aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorCraig Blackmore <craig.blackmore@embecosm.com>2024-06-21 13:01:02 +0100
committerChristoph Müllner <christophm30@gmail.com>2024-07-02 21:52:17 +0200
commit1358115963fb55cc445535d8a931e2f51dbe1940 (patch)
treed36aec6e0f492e9cba6257e4bd22e1d07ca19f77 /scripts
parent9c269c3ed55405b52bd0e7ab12f22f95a886db6a (diff)
downloadriscv-gnu-toolchain-master.zip
riscv-gnu-toolchain-master.tar.gz
riscv-gnu-toolchain-master.tar.bz2
Check UNRESOLVED in testsuite-filterHEADmaster
The resulting UNRESOLVEDs have been added to the allowlists. Tested with report-linux and report-newlib.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/testsuite-filter2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/testsuite-filter b/scripts/testsuite-filter
index df5004e..ca74378 100755
--- a/scripts/testsuite-filter
+++ b/scripts/testsuite-filter
@@ -161,7 +161,7 @@ def read_sum(sum_files):
current_target = l.split(" ")[-1].strip()
unexpected_result[current_target] = list()
elif l.startswith("FAIL") or l.startswith("XPASS") \
- or l.startswith("ERROR"):
+ or l.startswith("UNRESOLVED") or l.startswith("ERROR"):
unexpected_result[current_target].append(l.strip())
unexpected_results[tool] = unexpected_result
# tool -> variation(target) -> list of unexpected result