diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-10 17:09:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-06-10 17:09:32 (GMT) |
commit | 6aca9b93f20b6e9692d4fc686d1b836be3952626 (patch) | |
tree | 541ed1cd66f40801c23885fac5ace3dad42a027e | |
parent | 49d01b9c0f9a8e73fa405a76c58370746eb85b1b (diff) | |
download | hdf5-6aca9b93f20b6e9692d4fc686d1b836be3952626.zip hdf5-6aca9b93f20b6e9692d4fc686d1b836be3952626.tar.gz hdf5-6aca9b93f20b6e9692d4fc686d1b836be3952626.tar.bz2 |
[svn-r5568] Purpose:
Bug Fix
Description:
Some platforms *cough*AIX*cough* couldn't handle spaces in the h5dump
hyperslab script. It's okay if it was on the commandline, but when
it's in a script which is run through make which is run through poe,
ad infinitum, it failed because the quotes were being stripped off.
Solution:
Instead of spaces, use ',' to separate them.
Platforms tested:
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" { |