aboutsummaryrefslogtreecommitdiff
path: root/ci/simple-tests/Makefile
diff options
context:
space:
mode:
authorErik Martin-Dorel2021-02-25 18:30:40 +0100
committerGitHub2021-02-25 18:30:40 +0100
commit65da2c3a15df0a5b6f1fb81aa7a0dce8bcdaab1d (patch)
treeac5879e94b68e1b926783c93ff60b27039ccb464 /ci/simple-tests/Makefile
parentbdb67820696b2bfec06fda72f2a39548c73dcaf7 (diff)
parent76fe29c9b121a0010a0f24b5cca5ac706683e3c3 (diff)
Merge pull request #552 from hendriktews/issue-551
protect uses of coq-callcoq
Diffstat (limited to 'ci/simple-tests/Makefile')
-rw-r--r--ci/simple-tests/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/ci/simple-tests/Makefile b/ci/simple-tests/Makefile
new file mode 100644
index 00000000..dc5c8e73
--- /dev/null
+++ b/ci/simple-tests/Makefile
@@ -0,0 +1,23 @@
+# This file is part of Proof General.
+#
+# © Copyright 2021 Hendrik Tews
+#
+# Authors: Hendrik Tews
+# Maintainer: Hendrik Tews <hendrik@askra.de>
+#
+# License: GPL (GNU GENERAL PUBLIC LICENSE)
+
+
+TESTS:=$(wildcard test-*.el)
+SUCCESS:=$(TESTS:.el=.success)
+
+all: $(SUCCESS)
+
+test-%.success: test-%.el
+ emacs -batch -l ../../generic/proof-site.el -l $< \
+ -f ert-run-tests-batch-and-exit \
+ && touch $@
+
+.PHONY: clean
+clean:
+ rm -f *.vo *.glob *.vio *.vos *.vok .*.aux *.success