summaryrefslogtreecommitdiffstats
path: root/test/API/H5_api_dataset_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/API/H5_api_dataset_test.c')
-rw-r--r--test/API/H5_api_dataset_test.c190
1 files changed, 95 insertions, 95 deletions
diff --git a/test/API/H5_api_dataset_test.c b/test/API/H5_api_dataset_test.c
index e3843a6..55c4497 100644
--- a/test/API/H5_api_dataset_test.c
+++ b/test/API/H5_api_dataset_test.c
@@ -3753,7 +3753,7 @@ test_dataset_property_lists(void)
PART_ERROR(H5Dget_access_plist);
}
- if (NULL == (tmp_prefix = (char *)HDcalloc(1, (size_t)buf_size + 1))) {
+ if (NULL == (tmp_prefix = (char *)calloc(1, (size_t)buf_size + 1))) {
H5_FAILED();
printf(" couldn't allocate buffer for property value\n");
PART_ERROR(H5Dget_access_plist);
@@ -3897,7 +3897,7 @@ test_dataset_property_lists(void)
TESTING_2("test cleanup");
if (tmp_prefix) {
- HDfree(tmp_prefix);
+ free(tmp_prefix);
tmp_prefix = NULL;
}
@@ -3942,7 +3942,7 @@ error:
H5E_BEGIN_TRY
{
if (tmp_prefix)
- HDfree(tmp_prefix);
+ free(tmp_prefix);
H5Pclose(dcpl_id1);
H5Pclose(dcpl_id2);
H5Pclose(dapl_id1);
@@ -4108,7 +4108,7 @@ test_read_dataset_small_all(void)
data_size *= dims[i];
data_size *= DATASET_SMALL_READ_TEST_ALL_DSET_DTYPESIZE;
- if (NULL == (read_buf = HDmalloc(data_size)))
+ if (NULL == (read_buf = malloc(data_size)))
TEST_ERROR;
if (H5Dread(dset_id, DATASET_SMALL_READ_TEST_ALL_DSET_DTYPE, H5S_ALL, H5S_ALL, H5P_DEFAULT, read_buf) <
@@ -4119,7 +4119,7 @@ test_read_dataset_small_all(void)
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -4142,7 +4142,7 @@ error:
H5E_BEGIN_TRY
{
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Sclose(fspace_id);
H5Dclose(dset_id);
H5Gclose(group_id);
@@ -4232,7 +4232,7 @@ test_read_dataset_small_hyperslab(void)
data_size *= dims[i];
data_size *= DATASET_SMALL_READ_TEST_HYPERSLAB_DSET_DTYPESIZE;
- if (NULL == (read_buf = HDmalloc(data_size)))
+ if (NULL == (read_buf = malloc(data_size)))
TEST_ERROR;
if (H5Dread(dset_id, DATASET_SMALL_READ_TEST_HYPERSLAB_DSET_DTYPE, mspace_id, fspace_id, H5P_DEFAULT,
@@ -4243,7 +4243,7 @@ test_read_dataset_small_hyperslab(void)
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -4268,7 +4268,7 @@ error:
H5E_BEGIN_TRY
{
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -4347,7 +4347,7 @@ test_read_dataset_small_point_selection(void)
data_size = DATASET_SMALL_READ_TEST_POINT_SELECTION_NUM_POINTS *
DATASET_SMALL_READ_TEST_POINT_SELECTION_DSET_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size)))
+ if (NULL == (data = malloc(data_size)))
TEST_ERROR;
for (i = 0; i < DATASET_SMALL_READ_TEST_POINT_SELECTION_NUM_POINTS; i++) {
@@ -4372,7 +4372,7 @@ test_read_dataset_small_point_selection(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -4397,7 +4397,7 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -4969,7 +4969,7 @@ test_read_dataset_invalid_params(void)
data_size *= dims[i];
data_size *= DATASET_READ_INVALID_PARAMS_TEST_DSET_DTYPESIZE;
- if (NULL == (read_buf = HDmalloc(data_size)))
+ if (NULL == (read_buf = malloc(data_size)))
TEST_ERROR;
PASSED();
@@ -5106,7 +5106,7 @@ test_read_dataset_invalid_params(void)
TESTING_2("test cleanup");
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -5129,7 +5129,7 @@ error:
H5E_BEGIN_TRY
{
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Sclose(fspace_id);
H5Dclose(dset_id);
H5Gclose(group_id);
@@ -5221,7 +5221,7 @@ test_write_dataset_small_all(void)
goto error;
}
- if (NULL == (data = HDmalloc((hsize_t)space_npoints * DATASET_SMALL_WRITE_TEST_ALL_DSET_DTYPESIZE)))
+ if (NULL == (data = malloc((hsize_t)space_npoints * DATASET_SMALL_WRITE_TEST_ALL_DSET_DTYPESIZE)))
TEST_ERROR;
for (i = 0; i < (hsize_t)space_npoints; i++)
@@ -5234,7 +5234,7 @@ test_write_dataset_small_all(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -5257,7 +5257,7 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
H5Sclose(fspace_id);
H5Dclose(dset_id);
H5Gclose(group_id);
@@ -5336,7 +5336,7 @@ test_write_dataset_small_hyperslab(void)
data_size *= dims[i];
data_size *= DATASET_SMALL_WRITE_TEST_HYPERSLAB_DSET_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size)))
+ if (NULL == (data = malloc(data_size)))
TEST_ERROR;
for (i = 0; i < data_size / DATASET_SMALL_WRITE_TEST_HYPERSLAB_DSET_DTYPESIZE; i++)
@@ -5362,7 +5362,7 @@ test_write_dataset_small_hyperslab(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -5387,7 +5387,7 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -5466,7 +5466,7 @@ test_write_dataset_small_point_selection(void)
data_size = DATASET_SMALL_WRITE_TEST_POINT_SELECTION_NUM_POINTS *
DATASET_SMALL_WRITE_TEST_POINT_SELECTION_DSET_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size)))
+ if (NULL == (data = malloc(data_size)))
TEST_ERROR;
for (i = 0; i < data_size / DATASET_SMALL_WRITE_TEST_POINT_SELECTION_DSET_DTYPESIZE; i++)
@@ -5494,7 +5494,7 @@ test_write_dataset_small_point_selection(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -5519,7 +5519,7 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -5604,7 +5604,7 @@ test_write_dataset_data_verification(void)
data_size *= dims[i];
data_size *= DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size)))
+ if (NULL == (data = malloc(data_size)))
TEST_ERROR;
for (i = 0; i < data_size / DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE; i++)
@@ -5626,7 +5626,7 @@ test_write_dataset_data_verification(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -5666,7 +5666,7 @@ test_write_dataset_data_verification(void)
}
if (NULL ==
- (data = HDmalloc((hsize_t)space_npoints * DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE))) {
+ (data = malloc((hsize_t)space_npoints * DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
PART_ERROR(H5Dwrite_all_read);
@@ -5687,7 +5687,7 @@ test_write_dataset_data_verification(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -5701,7 +5701,7 @@ test_write_dataset_data_verification(void)
data_size = dims[1] * 2 * DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size))) {
+ if (NULL == (write_buf = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset write\n");
PART_ERROR(H5Dwrite_hyperslab_read);
@@ -5714,7 +5714,7 @@ test_write_dataset_data_verification(void)
data_size *= dims[i];
data_size *= DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size))) {
+ if (NULL == (data = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset data verification\n");
PART_ERROR(H5Dwrite_hyperslab_read);
@@ -5808,8 +5808,8 @@ test_write_dataset_data_verification(void)
PART_ERROR(H5Dwrite_hyperslab_read);
}
- if (NULL == (read_buf = HDmalloc((hsize_t)space_npoints *
- DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE))) {
+ if (NULL ==
+ (read_buf = malloc((hsize_t)space_npoints * DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
PART_ERROR(H5Dwrite_hyperslab_read);
@@ -5829,17 +5829,17 @@ test_write_dataset_data_verification(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -5854,7 +5854,7 @@ test_write_dataset_data_verification(void)
data_size =
DATASET_DATA_VERIFY_WRITE_TEST_NUM_POINTS * DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size))) {
+ if (NULL == (write_buf = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset write\n");
PART_ERROR(H5Dwrite_point_sel_read);
@@ -5867,7 +5867,7 @@ test_write_dataset_data_verification(void)
data_size *= dims[i];
data_size *= DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size))) {
+ if (NULL == (data = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset data verification\n");
PART_ERROR(H5Dwrite_point_sel_read);
@@ -5968,8 +5968,8 @@ test_write_dataset_data_verification(void)
PART_ERROR(H5Dwrite_point_sel_read);
}
- if (NULL == (read_buf = HDmalloc((hsize_t)space_npoints *
- DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE))) {
+ if (NULL ==
+ (read_buf = malloc((hsize_t)space_npoints * DATASET_DATA_VERIFY_WRITE_TEST_DSET_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
PART_ERROR(H5Dwrite_point_sel_read);
@@ -5997,17 +5997,17 @@ test_write_dataset_data_verification(void)
TESTING_2("test cleanup");
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -6030,11 +6030,11 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -6113,7 +6113,7 @@ test_write_dataset_invalid_params(void)
goto error;
}
- if (NULL == (data = HDmalloc((hsize_t)space_npoints * DATASET_WRITE_INVALID_PARAMS_TEST_DSET_DTYPESIZE)))
+ if (NULL == (data = malloc((hsize_t)space_npoints * DATASET_WRITE_INVALID_PARAMS_TEST_DSET_DTYPESIZE)))
TEST_ERROR;
for (i = 0; i < (hsize_t)space_npoints; i++)
@@ -6253,7 +6253,7 @@ test_write_dataset_invalid_params(void)
TESTING_2("test cleanup");
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -6276,7 +6276,7 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
H5Sclose(fspace_id);
H5Dclose(dset_id);
H5Gclose(group_id);
@@ -6372,7 +6372,7 @@ test_dataset_builtin_type_conversion(void)
data_size *= dims[i];
data_size *= DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size)))
+ if (NULL == (data = malloc(data_size)))
TEST_ERROR;
for (i = 0; i < data_size / DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE; i++)
@@ -6395,7 +6395,7 @@ test_dataset_builtin_type_conversion(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -6435,8 +6435,8 @@ test_dataset_builtin_type_conversion(void)
PART_ERROR(H5Dwrite_all_read);
}
- if (NULL == (data = HDmalloc((hsize_t)space_npoints *
- DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE))) {
+ if (NULL == (data = malloc((hsize_t)space_npoints *
+ DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
PART_ERROR(H5Dwrite_all_read);
@@ -6458,7 +6458,7 @@ test_dataset_builtin_type_conversion(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
@@ -6472,7 +6472,7 @@ test_dataset_builtin_type_conversion(void)
data_size = dims[1] * 2 * DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size))) {
+ if (NULL == (write_buf = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset write\n");
PART_ERROR(H5Dwrite_hyperslab_read);
@@ -6485,7 +6485,7 @@ test_dataset_builtin_type_conversion(void)
data_size *= dims[i];
data_size *= DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size))) {
+ if (NULL == (data = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset data verification\n");
PART_ERROR(H5Dwrite_hyperslab_read);
@@ -6582,8 +6582,8 @@ test_dataset_builtin_type_conversion(void)
PART_ERROR(H5Dwrite_hyperslab_read);
}
- if (NULL == (read_buf = HDmalloc((hsize_t)space_npoints *
- DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE))) {
+ if (NULL == (read_buf = malloc((hsize_t)space_npoints *
+ DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
PART_ERROR(H5Dwrite_hyperslab_read);
@@ -6604,17 +6604,17 @@ test_dataset_builtin_type_conversion(void)
}
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -6629,7 +6629,7 @@ test_dataset_builtin_type_conversion(void)
data_size = DATASET_DATA_BUILTIN_CONVERSION_TEST_NUM_POINTS *
DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size))) {
+ if (NULL == (write_buf = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset write\n");
PART_ERROR(H5Dwrite_point_sel_read);
@@ -6642,7 +6642,7 @@ test_dataset_builtin_type_conversion(void)
data_size *= dims[i];
data_size *= DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE;
- if (NULL == (data = HDmalloc(data_size))) {
+ if (NULL == (data = malloc(data_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset data verification\n");
PART_ERROR(H5Dwrite_point_sel_read);
@@ -6746,8 +6746,8 @@ test_dataset_builtin_type_conversion(void)
PART_ERROR(H5Dwrite_point_sel_read);
}
- if (NULL == (read_buf = HDmalloc((hsize_t)space_npoints *
- DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE))) {
+ if (NULL == (read_buf = malloc((hsize_t)space_npoints *
+ DATASET_DATA_BUILTIN_CONVERSION_TEST_MEM_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
PART_ERROR(H5Dwrite_point_sel_read);
@@ -6776,17 +6776,17 @@ test_dataset_builtin_type_conversion(void)
TESTING_2("test cleanup");
if (data) {
- HDfree(data);
+ free(data);
data = NULL;
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -6809,11 +6809,11 @@ error:
H5E_BEGIN_TRY
{
if (data)
- HDfree(data);
+ free(data);
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -8695,7 +8695,7 @@ test_write_single_chunk_dataset(void)
data_size *= dims[i];
data_size *= DATASET_SINGLE_CHUNK_WRITE_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size)))
+ if (NULL == (write_buf = malloc(data_size)))
TEST_ERROR;
for (i = 0; i < data_size / DATASET_SINGLE_CHUNK_WRITE_TEST_DSET_DTYPESIZE; i++)
@@ -8709,7 +8709,7 @@ test_write_single_chunk_dataset(void)
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
@@ -8749,7 +8749,7 @@ test_write_single_chunk_dataset(void)
}
if (NULL ==
- (read_buf = HDmalloc((hsize_t)space_npoints * DATASET_SINGLE_CHUNK_WRITE_TEST_DSET_DTYPESIZE))) {
+ (read_buf = malloc((hsize_t)space_npoints * DATASET_SINGLE_CHUNK_WRITE_TEST_DSET_DTYPESIZE))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
goto error;
@@ -8770,7 +8770,7 @@ test_write_single_chunk_dataset(void)
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -8795,9 +8795,9 @@ error:
H5E_BEGIN_TRY
{
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Pclose(dcpl_id);
H5Sclose(fspace_id);
H5Dclose(dset_id);
@@ -9107,7 +9107,7 @@ test_write_multi_chunk_dataset_same_shape_read(void)
data_size *= dims[i];
data_size *= DATASET_MULTI_CHUNK_WRITE_SAME_SPACE_READ_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size)))
+ if (NULL == (write_buf = malloc(data_size)))
TEST_ERROR;
/*
@@ -9176,7 +9176,7 @@ test_write_multi_chunk_dataset_same_shape_read(void)
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
@@ -9301,7 +9301,7 @@ error:
H5E_BEGIN_TRY
{
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
H5Pclose(dcpl_id);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
@@ -9433,7 +9433,7 @@ test_write_multi_chunk_dataset_diff_shape_read(void)
data_size *= dims[i];
data_size *= DATASET_MULTI_CHUNK_WRITE_DIFF_SPACE_READ_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size)))
+ if (NULL == (write_buf = malloc(data_size)))
TEST_ERROR;
/*
@@ -9502,7 +9502,7 @@ test_write_multi_chunk_dataset_diff_shape_read(void)
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
@@ -9539,7 +9539,7 @@ test_write_multi_chunk_dataset_diff_shape_read(void)
/*
* Allocate single chunk-sized read buffer.
*/
- if (NULL == (read_buf = HDmalloc(chunk_size))) {
+ if (NULL == (read_buf = malloc(chunk_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
goto error;
@@ -9609,7 +9609,7 @@ test_write_multi_chunk_dataset_diff_shape_read(void)
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -9636,9 +9636,9 @@ error:
H5E_BEGIN_TRY
{
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Pclose(dcpl_id);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
@@ -9771,7 +9771,7 @@ test_overwrite_multi_chunk_dataset_same_shape_read(void)
data_size *= dims[i];
data_size *= DATASET_MULTI_CHUNK_OVERWRITE_SAME_SPACE_READ_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size)))
+ if (NULL == (write_buf = malloc(data_size)))
TEST_ERROR;
/*
@@ -9946,7 +9946,7 @@ test_overwrite_multi_chunk_dataset_same_shape_read(void)
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
@@ -9973,7 +9973,7 @@ error:
H5E_BEGIN_TRY
{
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
H5Pclose(dcpl_id);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
@@ -10106,13 +10106,13 @@ test_overwrite_multi_chunk_dataset_diff_shape_read(void)
data_size *= dims[i];
data_size *= DATASET_MULTI_CHUNK_OVERWRITE_DIFF_SPACE_READ_TEST_DSET_DTYPESIZE;
- if (NULL == (write_buf = HDmalloc(data_size)))
+ if (NULL == (write_buf = malloc(data_size)))
TEST_ERROR;
/*
* Allocate single chunk-sized read buffer.
*/
- if (NULL == (read_buf = HDmalloc(chunk_size))) {
+ if (NULL == (read_buf = malloc(chunk_size))) {
H5_FAILED();
printf(" couldn't allocate buffer for dataset read\n");
goto error;
@@ -10286,12 +10286,12 @@ test_overwrite_multi_chunk_dataset_diff_shape_read(void)
}
if (write_buf) {
- HDfree(write_buf);
+ free(write_buf);
write_buf = NULL;
}
if (read_buf) {
- HDfree(read_buf);
+ free(read_buf);
read_buf = NULL;
}
@@ -10318,9 +10318,9 @@ error:
H5E_BEGIN_TRY
{
if (write_buf)
- HDfree(write_buf);
+ free(write_buf);
if (read_buf)
- HDfree(read_buf);
+ free(read_buf);
H5Pclose(dcpl_id);
H5Sclose(mspace_id);
H5Sclose(fspace_id);
@@ -10862,7 +10862,7 @@ test_get_vlen_buf_size(void)
/* Allocate and initialize VL data to write */
for (i = 0; i < DATASET_GET_VLEN_BUF_SIZE_DSET_SPACE_DIM; i++) {
- wdata[i].p = HDmalloc((i + 1) * sizeof(unsigned int));
+ wdata[i].p = malloc((i + 1) * sizeof(unsigned int));
wdata[i].len = i + 1;
for (j = 0; j < (i + 1); j++)
((unsigned int *)wdata[i].p)[j] = i * 10 + j;