mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[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:
parent
2bdd81b3a2
commit
4965da5a72
@ -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
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user