From 3ddd6d3a12495eaf6ccdf55268a93b5bdc491f84 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sat, 26 Nov 2016 23:00:23 +0100 Subject: [PATCH] remove obsolete timeout command --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 22f800220..ecee40307 100644 --- a/test.sh +++ b/test.sh @@ -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=tools/proxy -for f in $FILES; do echo "check $f..."; timeout --preserve-status 3m $PROXY $f || exit 1; done +for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done # test echo server at port 8000 $PROXY usr/tests/server &