clixon/test/all.sh
Olof hagsand 0a812696c2 xmldb
2016-03-07 20:55:55 +01:00

11 lines
187 B
Bash
Executable file

#!/bin/sh
for test in test*.sh; do
echo "Running $test"
./$test
errcode=$?
if [ $errcode -ne 0 ]; then
echo "Error in $test errcode=$errcode"
exit $errcode
fi
done