1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

if the test program failed, the script exit immediatly with an error

This commit is contained in:
Stefan Lankes 2016-08-28 00:49:35 +02:00
parent 28ccfdc1ee
commit a392afcbda

View file

@ -6,4 +6,4 @@
FILES="hermit/usr/tests/hello hermit/usr/tests/hellof hermit/usr/tests/hello++ hermit/usr/tests/thr_hello hermit/usr/tests/jacobi"
PROXY=hermit/tools/proxy
for f in $FILES; do echo "check $f..."; $PROXY $f; done
for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done