summaryrefslogtreecommitdiff
path: root/test-suite/coq-makefile/vio2vo/run.sh
blob: e555d62f35de298506582132b589b29f45ef3ea0 (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" ] || [ "$a" = "Linux" ]; then
    make vio2vo J=2
    test -f theories/test.vo
    make validate
fi