Skip to content

Commit 1358115

Browse files
craigblackmorecmuellner
authored andcommitted
Check UNRESOLVED in testsuite-filter
The resulting UNRESOLVEDs have been added to the allowlists. Tested with report-linux and report-newlib.
1 parent 9c269c3 commit 1358115

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

scripts/testsuite-filter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def read_sum(sum_files):
161161
current_target = l.split(" ")[-1].strip()
162162
unexpected_result[current_target] = list()
163163
elif l.startswith("FAIL") or l.startswith("XPASS") \
164-
or l.startswith("ERROR"):
164+
or l.startswith("UNRESOLVED") or l.startswith("ERROR"):
165165
unexpected_result[current_target].append(l.strip())
166166
unexpected_results[tool] = unexpected_result
167167
# tool -> variation(target) -> list of unexpected result

test/allowlist/gcc/common.log

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ FAIL: c-c++-common/spec-barrier-1.c
1717
# Fix upstream (9fde76a) but no backport
1818
#
1919
FAIL: gcc.target/riscv/arch-19.c
20+
#
21+
# Fix upstream (77f3b3419d4) but no backport
22+
#
23+
UNRESOLVED: gcc.target/riscv/mcpu-6.c
24+
UNRESOLVED: gcc.target/riscv/mcpu-7.c

test/allowlist/gcc/newlib.log

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ FAIL: gcc.target/riscv/inline-atomics-5.c
1212
FAIL: gcc.target/riscv/inline-atomics-6.c
1313
FAIL: gcc.target/riscv/inline-atomics-7.c
1414
FAIL: gcc.target/riscv/inline-atomics-8.c
15+
UNRESOLVED: gcc.target/riscv/inline-atomics-2.c
16+
UNRESOLVED: gcc.target/riscv/inline-atomics-3.c
17+
UNRESOLVED: gcc.target/riscv/inline-atomics-4.c
18+
UNRESOLVED: gcc.target/riscv/inline-atomics-5.c
19+
UNRESOLVED: gcc.target/riscv/inline-atomics-6.c
20+
UNRESOLVED: gcc.target/riscv/inline-atomics-7.c
21+
UNRESOLVED: gcc.target/riscv/inline-atomics-8.c
1522
#
1623
# We didn't init thread pointer in qemu nor newlib.
1724
#

0 commit comments

Comments
 (0)