From 2349d832f3141ef33c1097e7ad6255ba5be9461e Mon Sep 17 00:00:00 2001 From: glondu Date: Wed, 2 Jun 2010 16:25:49 +0000 Subject: 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 --- test-suite/Makefile | 6 ++++-- 1 file 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 \ -- cgit v1.2.3