summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-09-13 23:50:39 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-09-13 23:50:39 (GMT)
commit51e91feba8e2a4defd0455ca8c63425dc0cfe6c1 (patch)
tree707f81cf1d012cac2ca7e1ad7fb9c8c056733607 /test
parent85a08f5bc9c76b5a28897743046e548742bc963e (diff)
downloadhdf5-51e91feba8e2a4defd0455ca8c63425dc0cfe6c1.zip
hdf5-51e91feba8e2a4defd0455ca8c63425dc0cfe6c1.tar.gz
hdf5-51e91feba8e2a4defd0455ca8c63425dc0cfe6c1.tar.bz2
[svn-r2547] Changed hyperslab definition to generate one 6x6 hyperslab instead of 36 1x1
hyperslabs.
Diffstat (limited to 'test')
-rw-r--r--test/trefer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/trefer.c b/test/trefer.c
index 52beb9b..6715bd6 100644
--- a/test/trefer.c
+++ b/test/trefer.c
@@ -357,8 +357,8 @@ test_reference_region(void)
/* Select 6x6 hyperslab for first reference */
start[0]=2; start[1]=2;
stride[0]=1; stride[1]=1;
- count[0]=6; count[1]=6;
- block[0]=1; block[1]=1;
+ count[0]=1; count[1]=1;
+ block[0]=6; block[1]=6;
ret = H5Sselect_hyperslab(sid2,H5S_SELECT_SET,start,stride,count,block);
CHECK(ret, FAIL, "H5Sselect_hyperslab");