blob: e6ee8d1f8035e16a2276bc33a868453b83539c8e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ -n "$*" ]; then
tests/scripts/run_tests -s $* || exit 1
else
tests/scripts/run_tests -s tests/simple/*.sh tests/complex/*.sh || exit 1
fi
echo "All OK"
exit 0
|