diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2007-06-20 18:34:11 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2007-06-20 18:34:11 (GMT) |
commit | 4965da5a72d38548cd482f73d3b62e0d133730af (patch) | |
tree | a02269e9e31b04c7c9e16547536af0cc284b38b1 /tools/h5diff | |
parent | 2bdd81b3a2a26d35a4d8c386478ca632df6dfe30 (diff) | |
download | hdf5-4965da5a72d38548cd482f73d3b62e0d133730af.zip hdf5-4965da5a72d38548cd482f73d3b62e0d133730af.tar.gz hdf5-4965da5a72d38548cd482f73d3b62e0d133730af.tar.bz2 |
[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
Diffstat (limited to 'tools/h5diff')
-rwxr-xr-x | tools/h5diff/testh5diff.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh index a44a4c1..264cb4d 100755 --- a/tools/h5diff/testh5diff.sh +++ b/tools/h5diff/testh5diff.sh @@ -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 |