aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorglondu2010-06-02 16:25:49 +0000
committerglondu2010-06-02 16:25:49 +0000
commit2349d832f3141ef33c1097e7ad6255ba5be9461e (patch)
tree8b4fddf96a62f39082b579eced39025b27c3dc8e
parent791db4ddbf69e3fa0465dfb379fc7aec3630d9c6 (diff)
Fix xml test in non-local mode
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13055 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--test-suite/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index ed33439d3c..2503368f68 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -28,13 +28,14 @@
# Default value when called from a freshly compiled Coq, but can be
# easily overridden
BIN := ../bin/
+LIB := ..
ifeq ($(BEST),byte)
coqtop := $(BIN)coqtop.byte -boot -q -batch -I prerequisite
- bincoqc := $(BIN)coqc -byte -I prerequisite
+ bincoqc := $(BIN)coqc -coqlib $(LIB) -byte -I prerequisite
else
coqtop := $(BIN)coqtop -boot -q -batch -I prerequisite
- bincoqc := $(BIN)coqc -I prerequisite
+ bincoqc := $(BIN)coqc -coqlib $(LIB) -I prerequisite
endif
command := $(coqtop) -top Top -load-vernac-source
@@ -359,6 +360,7 @@ xml.log:
@echo "TEST xml"
$(HIDE){ \
echo $(call log_intro,xml); \
+ rm -rf misc/xml; \
COQ_XML_LIBRARY_ROOT=misc/xml \
$(bincoqc) -xml misc/berardi_test 2>&1; times; \
if [ ! -d misc/xml ]; then \