diff options
| author | Ralf Jung | 2018-02-09 10:16:55 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-02-15 10:37:20 +0100 |
| commit | 999a7059840bdfbdc46ce198e1a16b8621f93588 (patch) | |
| tree | 0049caead80bcb0a34876b03dbd95353da8fedde /test-suite/coq-makefile/vio2vo | |
| parent | 56b8b0e05c4c48a83a327c5e385c8d7ab0fec784 (diff) | |
disable tests: vio2vo is broken in Windows
Diffstat (limited to 'test-suite/coq-makefile/vio2vo')
| -rwxr-xr-x | test-suite/coq-makefile/vio2vo/run.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/test-suite/coq-makefile/vio2vo/run.sh b/test-suite/coq-makefile/vio2vo/run.sh index 86b2cfa281..85656da419 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 |
