kde-playground/kdepim/ktimetracker/test/runalltests
2015-04-14 21:49:29 +00:00

17 lines
292 B
Bash
Executable file

#!/bin/bash
export failed=0;
for n in *.sh
do
if bash $n
then
echo success
else
echo fail
export failed=23
break
fi
done
if [ $failed = 23 ]
then echo "runalltests: there was an error"
else echo "runalltests: there was no error"
fi