>From d7d17c8e6d4f9136e0cf87485834b093fc0f3756 Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Thu, 20 Feb 2014 22:44:44 +0100 Subject: [PATCH 5/6] Disable deployment tests on Solaris as well, because it isn't supported there --- tests/runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/runtests.sh b/tests/runtests.sh index 4302a9e..f902a98 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -418,7 +418,7 @@ CHICKEN_REPOSITORY=$CHICKEN_REPOSITORY $CHICKEN_INSTALL -t local -l $TEST_DIR -r -csi ${TEST_DIR}/../csi CHICKEN_REPOSITORY=$CHICKEN_REPOSITORY $interpret -bnq rev-app.scm 1.0 -if test $OS_NAME != AIX; then +if test $OS_NAME != AIX -a $OS_NAME != SunOS; then echo "======================================== deployment tests" mkdir rev-app CHICKEN_REPOSITORY=$CHICKEN_REPOSITORY $CHICKEN_INSTALL -t local -l $TEST_DIR reverser @@ -430,7 +430,7 @@ if test $OS_NAME != AIX; then mv rev-app rev-app-2 `pwd`/rev-app-2/rev-app 1.1 else - echo "Disabling deployment tests, as deployment is currently unsupported on AIX." + echo "Skipping deployment tests: deployment is currently unsupported on your platform." fi echo "======================================== done." -- 1.7.10.4