mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
c1c11c021b
commit
59bb6d185e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user