diff options
author | Felix Geyer <debfx@ubuntu.com> | 2015-05-14 09:31:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-14 12:53:33 (GMT) |
commit | 12b85b17911bbba871ffecf485878091b1be50b6 (patch) | |
tree | 058833a233fa4c6285ee75eed556c084b267c6f1 /Modules/Squish4RunTestCase.sh | |
parent | ee58e94d62e33a06625f09b6a89ff3bbdeaf510e (diff) | |
download | CMake-12b85b17911bbba871ffecf485878091b1be50b6.zip CMake-12b85b17911bbba871ffecf485878091b1be50b6.tar.gz CMake-12b85b17911bbba871ffecf485878091b1be50b6.tar.bz2 |
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-x | Modules/Squish4RunTestCase.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Squish4RunTestCase.sh b/Modules/Squish4RunTestCase.sh index abd5deb..39a3907 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" |