2
0
mirror of https://github.com/HDFGroup/hdf5.git synced 2025-04-12 17:31:09 +08:00

[svn-r8375] Purpose:

Bug fix.

Description:
    Allow the recent changes to support correct srcdir operation to also work
when building in place.

Platforms tested:
    FreeBSD 4.9 (sleipnir)
    h5committest

Misc. update:
This commit is contained in:
Quincey Koziol 2004-04-17 15:29:01 -05:00
parent d08090ff29
commit 7456a9293d

@ -44,19 +44,23 @@ TESTING() {
# non-zero value.
#
TEST() {
TEST_ERR=$1 # The test name
TEST_ERR_BIN=`pwd`/$TEST_ERR # The path of the test binary
expect1="$srcdir/testfiles/$1_1"
expect2="$srcdir/testfiles/$1_2"
actual="./`basename $1`.out"
actual_err="./`basename $1`.err"
actual_ext="./`basename $1`.ext"
shift
# Run test.
TESTING $1
(
echo "#############################"
echo "Expected output for $1"
echo "Expected output for $TEST_ERR"
echo "#############################"
$RUNSERIAL $1
$RUNSERIAL $TEST_ERR_BIN
) >$actual 2>$actual_err
# Extract file name, line number, version and thread IDs because they may be different
sed -e 's/thread [0-9]*/thread (IDs)/' -e 's/: .*\.c /: (file name) /' -e 's/line [0-9]*/line (number)/' -e 's/[1-9]*\.[0-9]*\.[0-9]*/version (number)/' $actual_err > $actual_ext