diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-10-01 14:04:36 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-10-01 14:04:36 (GMT) |
commit | f1ba03cea5b82699a984c80bd2deac14fdc8df18 (patch) | |
tree | ebe777c3e0b83f4c4cec9212731da9ebe0a0cfd3 /test/cache_logging.c | |
parent | 10343c197906415388f2a4c8d292e21d25cf7381 (diff) | |
download | hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.zip hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.tar.gz hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.tar.bz2 |
Source formatted
Diffstat (limited to 'test/cache_logging.c')
-rw-r--r-- | test/cache_logging.c | 101 |
1 files changed, 46 insertions, 55 deletions
diff --git a/test/cache_logging.c b/test/cache_logging.c index c43609b..baf84f8 100644 --- a/test/cache_logging.c +++ b/test/cache_logging.c @@ -32,20 +32,20 @@ static herr_t test_logging_api(void) { - hid_t fapl = -1; - hbool_t is_enabled; - hbool_t is_enabled_out; - hbool_t start_on_access; - hbool_t start_on_access_out; - char *location = NULL; - size_t size; - - hid_t fid = -1; - hid_t gid = -1; - hbool_t is_currently_logging; - char group_name[12]; - char filename[1024]; - int i; + hid_t fapl = -1; + hbool_t is_enabled; + hbool_t is_enabled_out; + hbool_t start_on_access; + hbool_t start_on_access_out; + char * location = NULL; + size_t size; + + hid_t fid = -1; + hid_t gid = -1; + hbool_t is_currently_logging; + char group_name[12]; + char filename[1024]; + int i; TESTING("metadata cache log api calls"); @@ -53,85 +53,78 @@ test_logging_api(void) h5_fixname(FILE_NAME, fapl, filename, sizeof filename); /* Set up metadata cache logging */ - is_enabled = TRUE; + is_enabled = TRUE; start_on_access = FALSE; - if(H5Pset_mdc_log_options(fapl, is_enabled, LOG_LOCATION, start_on_access) < 0) + if (H5Pset_mdc_log_options(fapl, is_enabled, LOG_LOCATION, start_on_access) < 0) TEST_ERROR; /* Check to make sure that the property list getter returns the correct * location string buffer size; */ - is_enabled_out = FALSE; + is_enabled_out = FALSE; start_on_access_out = TRUE; - location = NULL; - size = 999; - if(H5Pget_mdc_log_options(fapl, &is_enabled_out, location, &size, - &start_on_access_out) < 0) + location = NULL; + size = 999; + if (H5Pget_mdc_log_options(fapl, &is_enabled_out, location, &size, &start_on_access_out) < 0) TEST_ERROR; - if(size != HDstrlen(LOG_LOCATION) + 1) + if (size != HDstrlen(LOG_LOCATION) + 1) TEST_ERROR; /* Check to make sure that the property list getter works */ - if(NULL == (location = (char *)HDcalloc(size, sizeof(char)))) + if (NULL == (location = (char *)HDcalloc(size, sizeof(char)))) TEST_ERROR; - if(H5Pget_mdc_log_options(fapl, &is_enabled_out, location, &size, - &start_on_access_out) < 0) + if (H5Pget_mdc_log_options(fapl, &is_enabled_out, location, &size, &start_on_access_out) < 0) TEST_ERROR; - if((is_enabled != is_enabled_out) - || (start_on_access != start_on_access_out) - || HDstrcmp(LOG_LOCATION, location)) + if ((is_enabled != is_enabled_out) || (start_on_access != start_on_access_out) || + HDstrcmp(LOG_LOCATION, location)) TEST_ERROR; /* Create a file */ - if(H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) + if (H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) TEST_ERROR; - if((fid = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) + if ((fid = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0) TEST_ERROR; - if(H5Pclose(fapl) < 0) + if (H5Pclose(fapl) < 0) TEST_ERROR; - /* Check to see if the logging flags were set correctly */ - is_enabled = FALSE; + is_enabled = FALSE; is_currently_logging = TRUE; - if((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) - || (is_enabled != TRUE) - || (is_currently_logging != FALSE)) + if ((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) || (is_enabled != TRUE) || + (is_currently_logging != FALSE)) TEST_ERROR; /* Turn on logging and check flags */ - if(H5Fstart_mdc_logging(fid) < 0) + if (H5Fstart_mdc_logging(fid) < 0) TEST_ERROR; - is_enabled = FALSE; + is_enabled = FALSE; is_currently_logging = FALSE; - if((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) - || (is_enabled != TRUE) - || (is_currently_logging != TRUE)) + if ((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) || (is_enabled != TRUE) || + (is_currently_logging != TRUE)) TEST_ERROR; /* Perform some manipulations */ - for(i = 0; i < N_GROUPS; i++) { + for (i = 0; i < N_GROUPS; i++) { HDmemset(group_name, 0, sizeof(group_name)); HDsnprintf(group_name, sizeof(group_name), "%d", i); - if((gid = H5Gcreate2(fid, group_name, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if ((gid = H5Gcreate2(fid, group_name, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) TEST_ERROR; - if(H5Gclose(gid) < 0) + if (H5Gclose(gid) < 0) TEST_ERROR; } /* Turn off logging and check flags */ - if(H5Fstop_mdc_logging(fid) < 0) + if (H5Fstop_mdc_logging(fid) < 0) TEST_ERROR; - is_enabled = FALSE; + is_enabled = FALSE; is_currently_logging = TRUE; - if((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) - || (is_enabled != TRUE) - || (is_currently_logging != FALSE)) + if ((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) || (is_enabled != TRUE) || + (is_currently_logging != FALSE)) TEST_ERROR; /* Clean up */ HDfree(location); - if(H5Fclose(fid) < 0) + if (H5Fclose(fid) < 0) TEST_ERROR; PASSED(); @@ -139,7 +132,7 @@ test_logging_api(void) error: return 1; - } /* test_logging_api() */ +} /* test_logging_api() */ /*------------------------------------------------------------------------- * Function: main @@ -163,9 +156,8 @@ main(void) nerrors += test_logging_api(); - if(nerrors) { - HDprintf("***** %d Metadata cache logging TEST%s FAILED! *****\n", - nerrors, nerrors > 1 ? "S" : ""); + if (nerrors) { + HDprintf("***** %d Metadata cache logging TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : ""); HDexit(EXIT_FAILURE); } @@ -173,4 +165,3 @@ main(void) HDexit(EXIT_SUCCESS); } - |