[svn-r13894] Description:

On Windows, Mingw interprets all parameters starting with '/' as paths, and replaces the '/' with its home directory, "C:\Windows\msys\".  This was a problem in h5diff tests such as:
        h5diff h5diff_101.txt $FILE1 $FILE1 /g1/d1  g1/d2  -v

I've removed the leading '/', as h5diff will interpret it the same either way.

Tested:
kagiso, linew, and smirom, via h5committest
mingw on Windows XP
This commit is contained in:
Scott Wegner 2007-06-20 13:34:11 -05:00
parent 2bdd81b3a2
commit 4965da5a72
3 changed files with 4 additions and 4 deletions

View File

@ -498,8 +498,8 @@ TOOLTEST h5diff_90.txt $FILE1 $FILE1
TOOLTEST h5diff_100.txt $FILE9 $FILE10 -v
# 11. floating point comparison
TOOLTEST h5diff_101.txt $FILE1 $FILE1 /g1/d1 g1/d2 -v
TOOLTEST h5diff_102.txt $FILE1 $FILE1 /g1/fp1 g1/fp2 -v
TOOLTEST h5diff_101.txt $FILE1 $FILE1 g1/d1 g1/d2 -v
TOOLTEST h5diff_102.txt $FILE1 $FILE1 g1/fp1 g1/fp2 -v
# ##############################################################################
# # END

View File

@ -1,5 +1,5 @@
#############################
Expected output for 'h5diff h5diff_basic1.h5 h5diff_basic1.h5 /g1/d1 g1/d2 -v'
Expected output for 'h5diff h5diff_basic1.h5 h5diff_basic1.h5 g1/d1 g1/d2 -v'
#############################
dataset: </g1/d1> and </g1/d2>
size: [3x2] [3x2]

View File

@ -1,5 +1,5 @@
#############################
Expected output for 'h5diff h5diff_basic1.h5 h5diff_basic1.h5 /g1/fp1 g1/fp2 -v'
Expected output for 'h5diff h5diff_basic1.h5 h5diff_basic1.h5 g1/fp1 g1/fp2 -v'
#############################
dataset: </g1/fp1> and </g1/fp2>
size: [3x2] [3x2]