From 76e883c423331dee3df1e9ee24c2ada37431424c Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 20 Feb 2017 23:52:44 +0100 Subject: [PATCH] remove jacobi from the list of tests because it takes too much time --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index af1095878..45f43446a 100644 --- a/test.sh +++ b/test.sh @@ -3,7 +3,7 @@ # do not use this script # it is written only for internal tests via Travis CI -FILES="usr/tests/hello usr/tests/hellof usr/tests/hello++ usr/tests/thr_hello usr/tests/pi usr/benchmarks/stream usr/benchmarks/basic usr/tests/signals usr/tests/jacobi" +FILES="usr/tests/hello usr/tests/hellof usr/tests/hello++ usr/tests/thr_hello usr/tests/pi usr/benchmarks/stream usr/benchmarks/basic usr/tests/signals" PROXY=/opt/hermit/bin/proxy for f in $FILES; do echo "check $f..."; timeout --kill-after=5m 5m $PROXY $f || exit 1; done