[svn-r23492] Bug fix:

Test was not checking error result. It basically return succeess to make check
all the time.

Fixed it so that it does check the return code of the test (plugin) and set
nerror accordingly.  It then exit 1 if there is any error detected.

Test: use the desy committest to pass on jam, koala, ostrich, duck and emu.
Also hand test by "rm test/.lib/libdynlib1* to verify the test script can
indeed response to errors properly.
This commit is contained in:
Albert Cheng 2013-03-29 15:22:40 -05:00
parent c1c11c021b
commit 59bb6d185e

View File

@ -34,9 +34,6 @@ TEST_NAME=plugin
TEST_BIN=`pwd`/$TEST_NAME
ENVCMD="env HDF5_PLUGIN_PATH=`pwd`/.libs"
# Run the test
$ENVCMD $TEST_BIN
# Print a line-line message left justified in a field of 70 characters
# beginning with the word "Testing".
#
@ -45,8 +42,18 @@ TESTING() {
echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012'
}
if test $nerrors -eq 0 ; then
echo "All Plugin API tests passed."
# Main Body
# Run the test
$ENVCMD $TEST_BIN
if [ $? != 0 ]; then
nerrors=`expr $nerrors + 1`
fi
exit $nerrors
# print results
if test $nerrors -ne 0 ; then
echo "$nerrors errors encountered"
exit 1
else
echo "All Plugin API tests passed."
exit 0
fi