diff options
Diffstat (limited to 'test/tstab.c')
-rw-r--r-- | test/tstab.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/tstab.c b/test/tstab.c index 291dbd4..21b9be4 100644 --- a/test/tstab.c +++ b/test/tstab.c @@ -118,6 +118,12 @@ test_2(void) CHECK_I(status, "H5Gclose"); } + /* close the property lists */ + status = H5Pclose(create_plist); + CHECK_I(status, "H5Pclose"); + status = H5Pclose(access_plist); + CHECK_I(status, "H5Pclose"); + /* close the file */ status = H5Fclose(fid); CHECK_I(status, "H5Fclose"); |