aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-12-06 10:01:41 +0100
committerGitHub2018-12-06 10:01:41 +0100
commitf503e20667008eabb48aa1676ce56f4958c7087e (patch)
tree94333b1e21124e4394dbd722276c37a62662f7a7 /tests/Makefile
parent550472c67198353120cdc02b42683024b5b39765 (diff)
parente2fe373a1947206746dd43afe6c9815c69453def (diff)
Merge pull request coq/ltac2#90 from ejgallego/tests
[build] Test tests in Travis, use coqc for tests.
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 37915e0d6f..d85ae90dd6 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,11 +1,11 @@
ifeq "$(COQBIN)" ""
- COQBIN=$(dir $(shell which coqtop))/
+ COQBIN=$(dir $(shell which coqc))/
endif
all: $(patsubst %.v,%.v.log,$(wildcard *.v))
%.v.log: %.v
- $(COQBIN)/coqtop -batch -I ../src -Q ../theories Ltac2 -lv $< > $@
+ $(COQBIN)/coqc -I ../src -Q ../theories Ltac2 $< > $@
if [ $$? = 0 ]; then \
echo " $<... OK"; \
else \