aboutsummaryrefslogtreecommitdiff
path: root/test.sh
blob: 091a2bbca20877242aad50e7260bd67beeaaa5ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e
./compile.sh

for i in `ls tests/*.sh | grep -v common.sh`
do
    echo "Running $i"
    bash $i
done

set +e