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

./compile.sh

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