Skip to content

Commit

Permalink
32bit only, blacklist test case
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Nov 6, 2016
1 parent 2f56e21 commit c0b4f6d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions tests/smalltalk.ston
Expand Up @@ -6,6 +6,7 @@ SmalltalkCISpec {
#classes : [
#BasiBehaviorClassMetaclassTest,
#IslandVMTweaksTestCase,
#LangEnvBugs,
#MVCToolBuilderTests,
#SocketTest,
#SqueakSSLTest,
Expand Down
9 changes: 7 additions & 2 deletions tests/smalltalkCI.sh
Expand Up @@ -3,6 +3,11 @@ set -e

readonly STON_CONFIG="${TRAVIS_BUILD_DIR}/tests/smalltalk.ston"

if [[ "${ARCH}" = *"64x64" ]]; then
echo "Skipping SUnit testing on ${ARCH}..."
exit 0
fi

case "${FLAVOR}" in
"squeak"*)
SMALLTALK_VERSION="Squeak-5.1"
Expand All @@ -17,7 +22,7 @@ case "${FLAVOR}" in
MACOS_BINARY="Pharo"
;;
*)
echo "Skipping ${FLAVOR}..."
echo "Skipping SUnit testing for ${FLAVOR}..."
exit 0
;;
esac
Expand All @@ -37,7 +42,7 @@ if [[ ! -f "${VM}" ]]; then
exit 1
fi

echo "Starting SUnit tests..."
echo "Starting SUnit testing..."

wget -q -O "smalltalkCI.zip" "https://github.com/hpi-swa/smalltalkCI/archive/debug.zip"

Expand Down

0 comments on commit c0b4f6d

Please sign in to comment.