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