diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2013-05-08 16:36:58 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2013-05-08 16:36:58 (GMT) |
commit | 90ccb5c3c3efe341071ae4cdf41db8cc3d2e8906 (patch) | |
tree | 2f751f8eed8d2ea10e4819457340151488ceba36 /test | |
parent | 8ec42ced8063d739ec6c3d656b0556c3aafbc395 (diff) | |
download | hdf5-90ccb5c3c3efe341071ae4cdf41db8cc3d2e8906.zip hdf5-90ccb5c3c3efe341071ae4cdf41db8cc3d2e8906.tar.gz hdf5-90ccb5c3c3efe341071ae4cdf41db8cc3d2e8906.tar.bz2 |
[svn-r23685] Issue 8380 H5Zunregister caused seg fault. I simplied the iteration process over datasets, groups, and files as Quincey suggested. I also removed H5I_search that I introduced in last commit but didn't actually used it.
Tested on jam and koala - simple change.
Diffstat (limited to 'test')
-rw-r--r-- | test/unregister.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unregister.c b/test/unregister.c index 297035d..383958d 100644 --- a/test/unregister.c +++ b/test/unregister.c @@ -242,14 +242,14 @@ main(void) if(nerrors) goto error; - printf("All dataset tests passed.\n"); + printf("All filter unregistration tests passed.\n"); h5_cleanup(FILENAME, fapl); return 0; error: nerrors = MAX(1, nerrors); - printf("***** %d DATASET TEST%s FAILED! *****\n", + printf("***** %d FILTER UNREGISTRATION TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S"); return 1; } |