diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-24 18:02:27 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-24 18:02:27 (GMT) |
commit | b6da4ea427fabe5b1440586dd53667f77809854d (patch) | |
tree | 066464a0bf2aca1cabcfed4bf1146fffd7b0182e /test | |
parent | aef98c3b6f57b1aecea21c44f8c5968d5cfb53c7 (diff) | |
download | hdf5-b6da4ea427fabe5b1440586dd53667f77809854d.zip hdf5-b6da4ea427fabe5b1440586dd53667f77809854d.tar.gz hdf5-b6da4ea427fabe5b1440586dd53667f77809854d.tar.bz2 |
[svn-r4569]
Purpose:
Generic Property List Change
Description:
Changed file access list to the new generic list.
Platforms tested:
IRIX64, SunOS5.7, FreeBSD
Diffstat (limited to 'test')
-rw-r--r-- | test/lheap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lheap.c b/test/lheap.c index 0d771cf..44fb615 100644 --- a/test/lheap.c +++ b/test/lheap.c @@ -40,7 +40,7 @@ const char *FILENAME[] = { int main(void) { - hid_t fapl=-1; /*file access properties */ + hid_t fapl=H5P_DEFAULT; /*file access properties */ hid_t file=-1; /*hdf5 file */ H5F_t *f=NULL; /*hdf5 file pointer */ char filename[1024]; /*file name */ @@ -89,6 +89,7 @@ main(void) /* * Test reading from the heap... */ + TESTING("local heap read"); h5_fixname(FILENAME[0], fapl, filename, sizeof filename); if ((file=H5Fopen(filename, H5F_ACC_RDONLY, fapl))<0) goto error; @@ -117,7 +118,6 @@ main(void) if (H5Fclose(file)<0) goto error; PASSED(); - puts("All local heap tests passed."); h5_cleanup(FILENAME, fapl); return 0; |