summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2008-01-14 21:57:19 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2008-01-14 21:57:19 (GMT)
commita6605796b3fe5d179e6e52f2fa7952666f8b93c4 (patch)
tree9549ad90a839591e2877a98c79d67d31b9d7e188 /tools
parent1c3e5859d1cdc0e26f21fbc2249577123ad5b8d1 (diff)
downloadhdf5-a6605796b3fe5d179e6e52f2fa7952666f8b93c4.zip
hdf5-a6605796b3fe5d179e6e52f2fa7952666f8b93c4.tar.gz
hdf5-a6605796b3fe5d179e6e52f2fa7952666f8b93c4.tar.bz2
[svn-r14412] more progress on the block hyperslab bug, clean code
modified the 3D test case for subsetting with block and stride factors tested: windows, linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/testh5dump.sh.in2
-rw-r--r--tools/testfiles/tindicessub3.ddl26
2 files changed, 10 insertions, 18 deletions
diff --git a/tools/h5dump/testh5dump.sh.in b/tools/h5dump/testh5dump.sh.in
index d6877ac..3db5c58 100644
--- a/tools/h5dump/testh5dump.sh.in
+++ b/tools/h5dump/testh5dump.sh.in
@@ -381,7 +381,7 @@ TOOLTEST tindicessub1.ddl -d 1d -s 1 -c 2 -k 3 -S 10 taindices.h5
TOOLTEST tindicessub2.ddl -d 2d -s 1,2 -c 2,3 -k 2,2 -S 2,1 taindices.h5
# 3D case
-TOOLTEST tindicessub3.ddl -d 3d -s 0,1,3 -c 2,6,4 taindices.h5
+TOOLTEST tindicessub3.ddl -d 3d -s 0,1,2 -c 1,2,3 -k 1,2,1 -S 1,2,1 taindices.h5
# 4D case
TOOLTEST tindicessub4.ddl -d 4d -s 0,0,1,3 -c 2,2,6,4 taindices.h5
diff --git a/tools/testfiles/tindicessub3.ddl b/tools/testfiles/tindicessub3.ddl
index ba86242..222e552 100644
--- a/tools/testfiles/tindicessub3.ddl
+++ b/tools/testfiles/tindicessub3.ddl
@@ -1,28 +1,20 @@
#############################
-Expected output for 'h5dump -d 3d -s 0,1,3 -c 2,6,4 taindices.h5'
+Expected output for 'h5dump -d 3d -s 0,1,2 -c 1,2,3 -k 1,2,1 -S 1,2,1 taindices.h5'
#############################
HDF5 "taindices.h5" {
DATASET "3d" {
DATATYPE H5T_STD_I32LE
DATASPACE SIMPLE { ( 2, 10, 10 ) / ( 2, 10, 10 ) }
SUBSET {
- START ( 0, 1, 3 );
- STRIDE ( 1, 1, 1 );
- COUNT ( 2, 6, 4 );
- BLOCK ( 1, 1, 1 );
+ START ( 0, 1, 2 );
+ STRIDE ( 1, 2, 1 );
+ COUNT ( 1, 2, 3 );
+ BLOCK ( 1, 2, 1 );
DATA {
- (0,1,3): 13, 14, 15, 16,
- (0,2,3): 23, 24, 25, 26,
- (0,3,3): 33, 34, 35, 36,
- (0,4,3): 43, 44, 45, 46,
- (0,5,3): 53, 54, 55, 56,
- (0,6,3): 63, 64, 65, 66
- (1,1,3): 113, 114, 115, 116,
- (1,2,3): 123, 124, 125, 126,
- (1,3,3): 133, 134, 135, 136,
- (1,4,3): 143, 144, 145, 146,
- (1,5,3): 153, 154, 155, 156,
- (1,6,3): 163, 164, 165, 166
+ (0,1,2): 12, 13, 14,
+ (0,3,2): 32, 33, 34,
+ (0,5,2): 52, 53, 54,
+ (0,7,2): 72, 73, 74
}
}
}