diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-10 20:26:23 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-10 20:26:23 (GMT) |
commit | 5afb12313aa0052ddbc01ef7aa70268ebac32c8e (patch) | |
tree | 5662f3ba117be9f5d9b1e9b043f78b88ec73ff93 | |
parent | 2f1538cd7a5a3f35c05186ef0895c1dc98065691 (diff) | |
download | hdf5-5afb12313aa0052ddbc01ef7aa70268ebac32c8e.zip hdf5-5afb12313aa0052ddbc01ef7aa70268ebac32c8e.tar.gz hdf5-5afb12313aa0052ddbc01ef7aa70268ebac32c8e.tar.bz2 |
[svn-r5581] Purpose:
Bug Fix
Description:
On AIX machines, the number of script interpreters which ran the
testh5dump.sh script would strip too many of the quotes away, causing
problems if you're quoting something with a space in it.
Solution:
Just got rid of the spaces and used ',' instead.
Platforms tested:
AIX and Linux
-rwxr-xr-x | tools/h5dump/testh5dump.sh | 2 | ||||
-rw-r--r-- | tools/testfiles/tdset2-1s.ddl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5dump/testh5dump.sh b/tools/h5dump/testh5dump.sh index 83e71fc..b7324a3 100755 --- a/tools/h5dump/testh5dump.sh +++ b/tools/h5dump/testh5dump.sh @@ -162,7 +162,7 @@ TOOLTEST tlarge_objname.ddl -w157 tlarge_objname.h5 TOOLTEST tall-4s.ddl --dataset=/g1/g1.1/dset1.1.1 --start=1,1 --stride=2,3 --count=3,2 --block=1,1 tall.h5 TOOLTEST tall-5s.ddl -d "/g1/g1.1/dset1.1.2[0;2;10;]" tall.h5 TOOLTEST tdset-3s.ddl -d "/dset1[1,1;;;]" tdset.h5 -TOOLTEST tdset2-1s.ddl -d "/dset1[;3 2;4 4;1 4]" tdset2.h5 +TOOLTEST tdset2-1s.ddl -d "/dset1[;3,2;4,4;1,4]" tdset2.h5 # test XML TOOLTEST tall.h5.xml --xml tall.h5 diff --git a/tools/testfiles/tdset2-1s.ddl b/tools/testfiles/tdset2-1s.ddl index 97fcd9d..f4bd2d5 100644 --- a/tools/testfiles/tdset2-1s.ddl +++ b/tools/testfiles/tdset2-1s.ddl @@ -1,5 +1,5 @@ ############################# -Expected output for 'h5dump -d /dset1[;3 2;4 4;1 4] tdset2.h5' +Expected output for 'h5dump -d /dset1[;3,2;4,4;1,4] tdset2.h5' ############################# HDF5 "tdset2.h5" { DATASET "/dset1" { |