summaryrefslogtreecommitdiff
path: root/Modules/Squish4RunTestCase.sh
diff options
context:
space:
mode:
authorFelix Geyer <debfx@ubuntu.com>2015-05-14 05:31:00 -0400
committerBrad King <brad.king@kitware.com>2015-05-14 08:53:33 -0400
commit12b85b17911bbba871ffecf485878091b1be50b6 (patch)
tree058833a233fa4c6285ee75eed556c084b267c6f1 /Modules/Squish4RunTestCase.sh
parentee58e94d62e33a06625f09b6a89ff3bbdeaf510e (diff)
downloadcmake-12b85b17911bbba871ffecf485878091b1be50b6.tar.gz
FindSquish: Avoid bash-specific behavior in test script (#15568)
Fix Squish4RunTestCase.sh to be POSIX compliant by exiting with 255 explicitly instead of depending on bash to translate -1 to 255. This script is used by the SQUISH_V3_ADD_TEST and SQUISH_V4_ADD_TEST macros provided by FindSquish.
Diffstat (limited to 'Modules/Squish4RunTestCase.sh')
-rwxr-xr-xModules/Squish4RunTestCase.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Squish4RunTestCase.sh b/Modules/Squish4RunTestCase.sh
index abd5debd2e..39a390733f 100755
--- a/Modules/Squish4RunTestCase.sh
+++ b/Modules/Squish4RunTestCase.sh
@@ -11,11 +11,11 @@ SETTINGSGROUP=$7
$SQUISHSERVER --stop > /dev/null 2>&1
echo "Adding AUT... $SQUISHSERVER --settingsGroup $SETTINGSGROUP --config addAUT $AUT $AUTDIR"
-$SQUISHSERVER --settingsGroup "$SETTINGSGROUP" --config addAUT "$AUT" "$AUTDIR" || exit -1
+$SQUISHSERVER --settingsGroup "$SETTINGSGROUP" --config addAUT "$AUT" "$AUTDIR" || exit 255
# sleep 1
echo "Starting the squish server... $SQUISHSERVER --daemon"
-$SQUISHSERVER --daemon || exit -1
+$SQUISHSERVER --daemon || exit 255
# sleep 2
echo "Running the test case...$SQUISHRUNNER --settingsGroup $SETTINGSGROUP --testsuite $TESTSUITE --testcase $TESTCASE"