summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-03-11 03:45:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-03-11 03:45:56 (GMT)
commitda3eeee908eb6f6432b7fb15ce211c890d097dd5 (patch)
tree707714f2120375a369822179586e358aed204a7c /test
parent331e8bf9ae2bb7d2bf0b42baf01448c8d8d5fffd (diff)
downloadhdf5-da3eeee908eb6f6432b7fb15ce211c890d097dd5.zip
hdf5-da3eeee908eb6f6432b7fb15ce211c890d097dd5.tar.gz
hdf5-da3eeee908eb6f6432b7fb15ce211c890d097dd5.tar.bz2
[svn-r10189] Purpose:
New feature & bug fix Description: Support inserting multiple blocks Start tracking the metadata about the blocks. Platforms tested: FreeBSD 4.11 (sleipnir) Solaris 2.9 (shanti)
Diffstat (limited to 'test')
-rw-r--r--test/blocktrack.c71
1 files changed, 71 insertions, 0 deletions
diff --git a/test/blocktrack.c b/test/blocktrack.c
index 2b271a2..8929bfc 100644
--- a/test/blocktrack.c
+++ b/test/blocktrack.c
@@ -31,6 +31,8 @@ const char *FILENAME[] = {
NULL
};
+#define INSERT_MANY 100
+
/*-------------------------------------------------------------------------
* Function: test_create
@@ -156,6 +158,74 @@ error:
/*-------------------------------------------------------------------------
+ * Function: test_insert_many
+ *
+ * Purpose: Basic tests for the block tracker code
+ *
+ * Return: Success: 0
+ *
+ * Failure: 1
+ *
+ * Programmer: Quincey Koziol
+ * Thursday, March 10, 2005
+ *
+ * Modifications:
+ *
+ *-------------------------------------------------------------------------
+ */
+static int
+test_insert_many(hid_t fapl)
+{
+ hid_t file=-1;
+ char filename[1024];
+ H5F_t *f=NULL;
+ haddr_t bt_addr; /* Address of block tracker created */
+ unsigned u; /* Local index variable */
+
+ h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
+
+ /* Create the file to work on */
+ if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0) TEST_ERROR;
+
+ /* Get a pointer to the internal file object */
+ if (NULL==(f=H5I_object(file))) {
+ H5Eprint_stack(H5E_DEFAULT, stdout);
+ TEST_ERROR;
+ } /* end if */
+
+ if (H5BT_create(f, H5P_DATASET_XFER_DEFAULT, &bt_addr/*out*/)<0) {
+ H5_FAILED();
+ H5Eprint_stack(H5E_DEFAULT, stdout);
+ goto error;
+ } /* end if */
+
+ /*
+ * Test inserting many, non-overlapping, non-mergeable blocks
+ */
+ TESTING("insert many blocks");
+ for(u = 0; u < INSERT_MANY; u++) {
+ if (H5BT_insert(f, H5P_DATASET_XFER_DEFAULT, bt_addr, (haddr_t)(u*50), (hsize_t)20)<0) {
+ H5_FAILED();
+ H5Eprint_stack(H5E_DEFAULT, stdout);
+ goto error;
+ } /* end if */
+ } /* end for */
+
+ PASSED();
+
+ if (H5Fclose(file)<0) TEST_ERROR;
+
+ return 0;
+
+error:
+ H5E_BEGIN_TRY {
+ H5Fclose(file);
+ } H5E_END_TRY;
+ return 1;
+} /* test_insert_many() */
+
+
+/*-------------------------------------------------------------------------
* Function: main
*
* Purpose: Test the block tracker code
@@ -186,6 +256,7 @@ main(void)
/* Test block tracker insertion */
nerrors += test_insert_one(fapl);
+ nerrors += test_insert_many(fapl);
if (nerrors) goto error;
puts("All block tracker tests passed.");