mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
17 lines
292 B
Bash
Executable file
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
|