summaryrefslogtreecommitdiffstats
path: root/test/blocktrack.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/blocktrack.c')
-rw-r--r--test/blocktrack.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/blocktrack.c b/test/blocktrack.c
index 8929bfc..c297bca 100644
--- a/test/blocktrack.c
+++ b/test/blocktrack.c
@@ -57,6 +57,7 @@ test_create(hid_t fapl)
char filename[1024];
H5F_t *f=NULL;
haddr_t bt_addr; /* Address of block tracker created */
+ hsize_t tot_size; /* Total size of blocks tracked */
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
@@ -78,6 +79,16 @@ test_create(hid_t fapl)
H5Eprint_stack(H5E_DEFAULT, stdout);
goto error;
} /* end if */
+
+ if (H5BT_get_total_size(f, H5P_DATASET_XFER_DEFAULT, bt_addr, &tot_size)<0) {
+ H5_FAILED();
+ H5Eprint_stack(H5E_DEFAULT, stdout);
+ goto error;
+ } /* end if */
+ /* Make certain that the size is correct */
+ if(tot_size != 0) TEST_ERROR;
+
+
PASSED();
if (H5Fclose(file)<0) TEST_ERROR;
@@ -115,6 +126,7 @@ test_insert_one(hid_t fapl)
char filename[1024];
H5F_t *f=NULL;
haddr_t bt_addr; /* Address of block tracker created */
+ hsize_t tot_size; /* Total size of blocks tracked */
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
@@ -143,6 +155,14 @@ test_insert_one(hid_t fapl)
goto error;
} /* end if */
+ if (H5BT_get_total_size(f, H5P_DATASET_XFER_DEFAULT, bt_addr, &tot_size)<0) {
+ H5_FAILED();
+ H5Eprint_stack(H5E_DEFAULT, stdout);
+ goto error;
+ } /* end if */
+ /* Make certain that the size is correct */
+ if(tot_size != 20) TEST_ERROR;
+
PASSED();
if (H5Fclose(file)<0) TEST_ERROR;
@@ -181,6 +201,7 @@ test_insert_many(hid_t fapl)
H5F_t *f=NULL;
haddr_t bt_addr; /* Address of block tracker created */
unsigned u; /* Local index variable */
+ hsize_t tot_size; /* Total size of blocks tracked */
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
@@ -209,6 +230,15 @@ test_insert_many(hid_t fapl)
H5Eprint_stack(H5E_DEFAULT, stdout);
goto error;
} /* end if */
+
+ if (H5BT_get_total_size(f, H5P_DATASET_XFER_DEFAULT, bt_addr, &tot_size)<0) {
+ H5_FAILED();
+ H5Eprint_stack(H5E_DEFAULT, stdout);
+ goto error;
+ } /* end if */
+ /* Make certain that the size is correct */
+ if(tot_size != ((u+1)*20)) TEST_ERROR;
+
} /* end for */
PASSED();