diff options
author | Jim Wilson <jimw@sifive.com> | 2020-07-27 18:46:15 -0700 |
---|---|---|
committer | Jim Wilson <jimw@sifive.com> | 2020-07-27 18:46:15 -0700 |
commit | 80036e3300c5fe103c6673dd6e3c741797331825 (patch) | |
tree | 4b1084d95fe067455a0169f749e35bbfa050d046 /scripts | |
parent | 256a4108922f76403a63d6567501c479971d5575 (diff) | |
download | riscv-gnu-toolchain-80036e3300c5fe103c6673dd6e3c741797331825.zip riscv-gnu-toolchain-80036e3300c5fe103c6673dd6e3c741797331825.tar.gz riscv-gnu-toolchain-80036e3300c5fe103c6673dd6e3c741797331825.tar.bz2 |
Check for dejagnu ERROR.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/testsuite-filter | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/testsuite-filter b/scripts/testsuite-filter index 4ae3efc..31ee7f0 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 |