summaryrefslogtreecommitdiffstats
path: root/test/space_overflow.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-10-20 20:57:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-10-20 20:57:56 (GMT)
commit51ba7ad48ca49d21d41d4f77c2c369f8c5e2cfb6 (patch)
tree9990ec70d7d40517cfcdd12dd75a4c61a3cccff8 /test/space_overflow.c
parent904ade0c86726b8edebc98e655b20d4688165460 (diff)
downloadhdf5-51ba7ad48ca49d21d41d4f77c2c369f8c5e2cfb6.zip
hdf5-51ba7ad48ca49d21d41d4f77c2c369f8c5e2cfb6.tar.gz
hdf5-51ba7ad48ca49d21d41d4f77c2c369f8c5e2cfb6.tar.bz2
[svn-r2717] Purpose:
Change test files for increased maximum dimension constant. Description: space_overflow.c - added some simple error checking. th5s.c - corrected test case for maximem dimensions to use correct file and actually test what is supposed to be tested... :-) th5s.h5 - regenerated with increased dimensions. Platforms Tested: FreeBSD 4.1.1 (hawkwind) Solaris 2.5 (baldric)
Diffstat (limited to 'test/space_overflow.c')
-rw-r--r--test/space_overflow.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/space_overflow.c b/test/space_overflow.c
index 081e2f2..690b8bf 100644
--- a/test/space_overflow.c
+++ b/test/space_overflow.c
@@ -41,9 +41,16 @@ main(void)
int i;
file = H5Fcreate("th5s.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
- for (i=0; i<H5S_MAX_RANK; i++) cur_dim[i] = 1;
+ if(file<0)
+ printf("file<0!\n");
+ for (i=0; i<H5S_MAX_RANK; i++)
+ cur_dim[i] = 1;
space = H5Screate_simple(H5S_MAX_RANK, cur_dim, NULL);
+ if(space<0)
+ printf("space<0!\n");
dset = H5Dcreate(file, "dset", H5T_NATIVE_UCHAR, space, H5P_DEFAULT);
+ if(dset<0)
+ printf("dset<0!\n");
H5Sclose(space);
H5Dclose(dset);
H5Fclose(file);