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

kill processes after 3min

This commit is contained in:
Stefan Lankes 2017-02-18 11:59:44 +01:00
parent 595b4c83c1
commit e9ace8ecdc

View file

@ -6,7 +6,7 @@
FILES="usr/tests/hello usr/tests/hellof usr/tests/hello++ usr/tests/thr_hello usr/tests/pi usr/benchmarks/stream usr/benchmarks/basic"
PROXY=/opt/hermit/bin/proxy
for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done
for f in $FILES; do echo "check $f..."; timeout -k 180s $PROXY $f || exit 1; done
# test echo server at port 8000
#HERMIT_APP_PORT=8000 $PROXY usr/tests/server &