This commit is contained in:
Olof hagsand 2016-03-07 20:55:55 +01:00
parent ca18b7f49e
commit 0a812696c2
47 changed files with 1818 additions and 1783 deletions

11
test/all.sh Executable file
View file

@ -0,0 +1,11 @@
#!/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