summaryrefslogtreecommitdiffstats
path: root/test/istore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-08-27 13:42:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-08-27 13:42:22 (GMT)
commitc2869d6a57b3ba2d3d5bac8fd8f3f638263b122e (patch)
tree33037ccb57b98b0fafdb75b8b22c070eb2baebf7 /test/istore.c
parent32b58cef083388eec4b81c956eef717f59f24a87 (diff)
downloadhdf5-c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e.zip
hdf5-c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e.tar.gz
hdf5-c2869d6a57b3ba2d3d5bac8fd8f3f638263b122e.tar.bz2
[svn-r5895] Purpose:
Code cleanup/More tests Description: Cleaned up some compiler warnings and wrote additional tests for space allocation and storage size routines. Platforms tested: FreeBSD 4.6 (sleipnir) w/serial & parallel. Will be testing on IRIX64 6.5 (modi4) in serial & parallel shortly.
Diffstat (limited to 'test/istore.c')
-rw-r--r--test/istore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/istore.c b/test/istore.c
index d9bea45..e79754a 100644
--- a/test/istore.c
+++ b/test/istore.c
@@ -116,7 +116,8 @@ new_object(H5F_t *f, const char *name, unsigned ndims, H5G_entry_t *ent/*out*/)
layout.dim[u] = 2;
}
}
- H5F_arr_create(f, &layout/*in,out*/);
+ /* Create the root of the B-tree that describes chunked storage */
+ H5F_istore_create (f, &layout/*in,out*/);
if (H5O_modify(ent, H5O_LAYOUT, H5O_NEW_MESG, 0, &layout) < 0) {
H5_FAILED();
puts(" H5O_modify istore message failure.");