aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/Makefile
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2016-09-30 10:14:10 +0200
committerGravatar Enrico Tassi <Enrico.Tassi@inria.fr>2016-09-30 10:54:42 +0200
commit775b8f28562d1d5063da2b28a06e59610b76f06f (patch)
treef8360212d2dabfbae2ebe06aa5d7b40cc3247992 /test-suite/Makefile
parent61112fa8bd336b17f4a2e724c4751c550f27c69a (diff)
Ignore file names in warning emitted by test-suite/output/* (#5111)
Diffstat (limited to 'test-suite/Makefile')
-rw-r--r--test-suite/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index a40ea80ae..6ecc7bcaa 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -280,7 +280,7 @@ $(addsuffix .log,$(wildcard output/*.v)): %.v.log: %.v %.out
| grep -v "Welcome to Coq" \
| grep -v "\[Loading ML file" \
| grep -v "Skipping rcfile loading" \
- | grep -v "^<W>" \
+ | sed 's/File "[^"]*"/File "stdin"/' \
> $$tmpoutput; \
diff -u $*.out $$tmpoutput 2>&1; R=$$?; times; \
if [ $$R = 0 ]; then \