aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-08-24 23:44:28 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-08-24 23:44:28 +0000
commit9843982643dd71214c49c161cd324acaa9a3f488 (patch)
tree4a9a374e49a080d17898935df304ed8ec2086238 /test-suite
parente04f1f5d17cb7546be57e5a4c43407deed127931 (diff)
In the output tests, ignore dynlink messages
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15767 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index acf5600d2..447160e59 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -265,6 +265,7 @@ $(addsuffix .log,$(wildcard output/*.v)): %.v.log: %.v
tmpoutput=`mktemp /tmp/coqcheck.XXXXXX`; \
$(command) "$<" 2>&1 \
| grep -v "Welcome to Coq" \
+ | grep -v "[Loading ML file" \
| grep -v "Skipping rcfile loading" \
> $$tmpoutput; \
diff -u $*.out $$tmpoutput 2>&1; R=$$?; times; \