summaryrefslogtreecommitdiff
path: root/bin/testall.sh
blob: 93bb67edae800d30cc88f509564e30fa7d548f37 (plain)
1
2
3
4
5
6
#!/bin/bash
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
shift 1
for file in "$@"; do
    $DIR/test.sh $file > generated/$file.tst-out
done