diff options
Diffstat (limited to 'test/tstab.c')
-rw-r--r-- | test/tstab.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/tstab.c b/test/tstab.c index 6165405..4e6c21e 100644 --- a/test/tstab.c +++ b/test/tstab.c @@ -201,8 +201,8 @@ test_1 (void) VERIFY (status_ptr, NULL, "H5O_read [didn't fail but should have]"); /* close the file */ - H5Fclose (fid); - + status = H5Fclose (fid); + CHECK_I (status, "H5Fclose"); } @@ -268,7 +268,8 @@ test_2 (void) /* close the file */ - H5Fclose (fid); + status = H5Fclose (fid); + CHECK_I (status, "H5Fclose"); } |