aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/metalang99/scripts/test.sh
blob: ced5f53832f1923fac1b95d0b94993acded32b31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e

mkdir -p tests/build
cd tests/build
cmake ..
cmake --build .

if [[ "$OSTYPE" == "linux-gnu" ]]; then
    echo "Testing ./gen ..."
    ./gen

    echo "Testing ./stmt ..."
    ./stmt
fi