aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-11-21 21:29:14 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-11-21 21:29:14 +0000
commitc136d946314f44ab5da5f7ed229dc36b84effb66 (patch)
tree5bd649d8912a8250e0d3dbad2294322ae5884b35
parent0e054620f3dd7379a058cc85aef52fb106d8bff5 (diff)
Possibilité d'appeler check avec l'option -byte
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2235 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--Makefile2
-rwxr-xr-xtest-suite/check6
2 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7803f8259..9ac970c56 100644
--- a/Makefile
+++ b/Makefile
@@ -325,7 +325,7 @@ clean::
###########################################################################
check: $(BESTCOQTOP)
- cd test-suite; ./check
+ cd test-suite; ./check -$(BEST)
###########################################################################
# theories and states
diff --git a/test-suite/check b/test-suite/check
index f206c8413..3e8a08038 100755
--- a/test-suite/check
+++ b/test-suite/check
@@ -2,7 +2,11 @@
# Automatic test of Coq
-command="../bin/coqtop.opt -q -batch -load-vernac-source"
+if [ "$1" = -byte ]; then
+ command="../bin/coqtop.byte -q -batch -load-vernac-source"
+else
+ command="../bin/coqtop -q -batch -load-vernac-source"
+fi
# on compte le nombre de tests et de succès
nbtests=0