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/quick2vo/run.sh | |
| parent | 56b8b0e05c4c48a83a327c5e385c8d7ab0fec784 (diff) | |
disable tests: vio2vo is broken in Windows
Diffstat (limited to 'test-suite/coq-makefile/quick2vo/run.sh')
| -rwxr-xr-x | test-suite/coq-makefile/quick2vo/run.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/test-suite/coq-makefile/quick2vo/run.sh b/test-suite/coq-makefile/quick2vo/run.sh index b8ce4709ed..9e681223b4 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 |
