summaryrefslogtreecommitdiff
path: root/test-suite/coq-makefile/quick2vo/run.sh
blob: 9e681223b45e93c506f161ede9b9e5fbd04c73c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
a=`uname`

. ../template/init.sh

coq_makefile -f _CoqProject -o Makefile
# 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