~ chicken-core (chicken-5) 841d25fff90f4a52a72781d7b7b466f98d4a6388
commit 841d25fff90f4a52a72781d7b7b466f98d4a6388
Author: Peter Bex <peter.bex@xs4all.nl>
AuthorDate: Thu Feb 20 22:44:44 2014 +0100
Commit: Mario Domenech Goulart <mario.goulart@gmail.com>
CommitDate: Thu Feb 20 19:51:53 2014 -0300
Disable deployment tests on Solaris as well, because it isn't supported there
Signed-off-by: Mario Domenech Goulart <mario.goulart@gmail.com>
diff --git a/tests/runtests.sh b/tests/runtests.sh
index 4302a9e2..f902a986 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."
Trap