From d87ed76f5d25e88a2e1542af07d6a5525e1ede77 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sun, 21 May 2017 00:21:47 +0200 Subject: [PATCH] enable all tests --- tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.sh b/tests.sh index 52c060c7a..fc327bb6b 100755 --- a/tests.sh +++ b/tests.sh @@ -7,7 +7,7 @@ TDIR=build/local_prefix/opt/hermit/x86_64-hermit/extra FILES="$TDIR/tests/hello $TDIR/tests/hellof $TDIR/tests/hello++ $TDIR/tests/thr_hello $TDIR/tests/pi $TDIR/benchmarks/stream $TDIR/benchmarks/basic $TDIR/tests/signals $TDIR/tests/test-malloc" PROXY=build/local_prefix/opt/hermit/bin/proxy -#for f in $FILES; do echo "check $f..."; HERMIT_ISLE=qemu HERMIT_CPUS=1 HERMIT_VERBOSE=1 timeout --kill-after=5m 5m $PROXY $f || exit 1; done +for f in $FILES; do echo "check $f..."; HERMIT_ISLE=qemu HERMIT_CPUS=1 HERMIT_KVM=0 HERMIT_VERBOSE=1 timeout --kill-after=5m 5m $PROXY $f || exit 1; done # test echo server at port 8000 HERMIT_ISLE=qemu HERMIT_CPUS=1 HERMIT_KVM=0 HERMIT_VERBOSE=1 HERMIT_APP_PORT=8000 $PROXY $TDIR/tests/server &