aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/coq-makefile
diff options
context:
space:
mode:
authorGravatar Ralf Jung <post@ralfj.de>2018-02-09 10:16:55 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-02-15 10:37:20 +0100
commit999a7059840bdfbdc46ce198e1a16b8621f93588 (patch)
tree0049caead80bcb0a34876b03dbd95353da8fedde /test-suite/coq-makefile
parent56b8b0e05c4c48a83a327c5e385c8d7ab0fec784 (diff)
disable tests: vio2vo is broken in Windows
Diffstat (limited to 'test-suite/coq-makefile')
-rwxr-xr-xtest-suite/coq-makefile/quick2vo/run.sh11
-rwxr-xr-xtest-suite/coq-makefile/vio2vo/run.sh11
2 files changed, 14 insertions, 8 deletions
diff --git a/test-suite/coq-makefile/quick2vo/run.sh b/test-suite/coq-makefile/quick2vo/run.sh
index b8ce4709e..9e681223b 100755
--- a/test-suite/coq-makefile/quick2vo/run.sh
+++ b/test-suite/coq-makefile/quick2vo/run.sh
@@ -1,9 +1,12 @@
#!/usr/bin/env bash
+a=`uname`
. ../template/init.sh
coq_makefile -f _CoqProject -o Makefile
-cat Makefile.conf
-make quick2vo J=2
-test -f theories/test.vo
-make validate
+# vio2vo is broken on Windows (#6720)
+if [ "$a" = "Darwin" -o "$a" = "Linux" ]; then
+ make quick2vo J=2
+ test -f theories/test.vo
+ make validate
+fi
diff --git a/test-suite/coq-makefile/vio2vo/run.sh b/test-suite/coq-makefile/vio2vo/run.sh
index 86b2cfa28..85656da41 100755
--- a/test-suite/coq-makefile/vio2vo/run.sh
+++ b/test-suite/coq-makefile/vio2vo/run.sh
@@ -1,10 +1,13 @@
#!/usr/bin/env bash
+a=`uname`
. ../template/init.sh
coq_makefile -f _CoqProject -o Makefile
-cat Makefile.conf
make quick
-make vio2vo J=2
-test -f theories/test.vo
-make validate
+# vio2vo is broken on Windows (#6720)
+if [ "$a" = "Darwin" -o "$a" = "Linux" ]; then
+ make vio2vo J=2
+ test -f theories/test.vo
+ make validate
+fi