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

. ../template/init.sh

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