From 82d113680c47b7916d2d8fb7c9b94d0370777c85 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 1 Aug 2016 15:33:01 +0200 Subject: Run the tests only three times. --- scripts/tests.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'scripts/tests.sh') diff --git a/scripts/tests.sh b/scripts/tests.sh index c342c65f..6ee816b0 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -26,6 +26,8 @@ # (c) 2016 solidity contributors. #------------------------------------------------------------------------------ +set -e + # There is an implicit assumption here that we HAVE to run from root directory. REPO_ROOT=$(pwd) @@ -59,7 +61,9 @@ while [ ! -S /tmp/test/geth.ipc ]; do sleep 2; done # need to check if this command-line support works for Windows too, when we # have implemented IPC Sockets support at all for Windows. export ETH_TEST_IPC=/tmp/test/geth.ipc -$REPO_ROOT/build/test/soltest +"$REPO_ROOT"/build/test/soltest ERROR_CODE=$? -pkill eth +pkill eth || true +sleep 4 +pgrep eth && pkill -9 eth || true exit $ERROR_CODE -- cgit