enhancing the test proggy

This commit is contained in:
tTh
2019-04-03 12:09:04 +02:00
parent 7809e33e55
commit 5564b24c54
3 changed files with 53 additions and 27 deletions

View File

@@ -1,23 +1,25 @@
#!/bin/bash
cd lib
echo EEEEEEEEEE we are in $PWD
echo ============= we are in $PWD
make
error=$?
if [ 0 -ne $error ]; then
printf "in %s err %d in %s\n" $PWD $error $0
exit $error
fi
echo
cd ..
cd funcs
echo EEEEEEEEEE we are in $PWD
echo ============= we are in $PWD
make
error=$?
if [ 0 -ne $error ]; then
printf "in %s err %d in %s\n" $PWD $error $0
exit $error
fi
echo
cd ..
cd tools