aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@dabbelt.com>2017-09-05 18:37:39 -0700
committerPalmer Dabbelt <palmer@dabbelt.com>2017-09-05 18:37:39 -0700
commit6f0f4637351e203c3070b0fada4dbde025bf1071 (patch)
tree8901356320a5af62657e2504ac28dfc35f4e118c
parentd99c12ffc4a1762cf08cb6cb0a6472e4d8cff55c (diff)
downloadriscv-gnu-toolchain-6f0f4637351e203c3070b0fada4dbde025bf1071.zip
riscv-gnu-toolchain-6f0f4637351e203c3070b0fada4dbde025bf1071.tar.gz
riscv-gnu-toolchain-6f0f4637351e203c3070b0fada4dbde025bf1071.tar.bz2
Allow multiple test whitelists to be used
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 9e50754..184ba5a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -345,12 +345,12 @@ stamps/check-gcc-linux: stamps/build-gcc-linux-stage2 stamps/build-qemu
.PHONY: report-gcc-newlib
report-gcc-newlib: stamps/check-gcc-newlib
- test -f $(patsubst %,$(srcdir)/test/gcc-newlib/%.log,$(MULTILIB_NAMES)) || exit 1
+ stat $(patsubst %,$(srcdir)/test/gcc-newlib/%.log,$(MULTILIB_NAMES)) || exit 1
if find build-gcc-newlib-stage2/gcc/testsuite/ -iname '*.sum' | xargs grep ^FAIL | sort | grep -F -v $(patsubst %,--file=$(srcdir)/test/gcc-newlib/%.log,$(MULTILIB_NAMES)); then false; else true; fi
.PHONY: report-gcc-linux
report-gcc-linux: stamps/check-gcc-linux
- test -f $(patsubst %,$(srcdir)/test/gcc-linux/%.log,$(MULTILIB_NAMES)) || exit 1
+ stat $(patsubst %,$(srcdir)/test/gcc-linux/%.log,$(MULTILIB_NAMES)) || exit 1
if find build-gcc-linux-stage2/gcc/testsuite/ -iname '*.sum' | xargs grep ^FAIL | sort | grep -F -v $(patsubst %,--file=$(srcdir)/test/gcc-linux/%.log,$(MULTILIB_NAMES)); then false; else true; fi
clean: