summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattjala <124107509+mattjala@users.noreply.github.com>2024-01-26 17:02:10 (GMT)
committerGitHub <noreply@github.com>2024-01-26 17:02:10 (GMT)
commit3d9f8f878995a9acb8cf4aa6067b86494c696ea5 (patch)
tree2fddbd2860ac8cddc69000f3a2e7d3b410ed5443
parent3293df2533f57520dc49bffe72ed2607b9dd6815 (diff)
downloadhdf5-3d9f8f878995a9acb8cf4aa6067b86494c696ea5.zip
hdf5-3d9f8f878995a9acb8cf4aa6067b86494c696ea5.tar.gz
hdf5-3d9f8f878995a9acb8cf4aa6067b86494c696ea5.tar.bz2
Fix potential infinite loop in API test (#3961)
-rw-r--r--test/API/H5_api_dataset_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/API/H5_api_dataset_test.c b/test/API/H5_api_dataset_test.c
index df22fef..c183697 100644
--- a/test/API/H5_api_dataset_test.c
+++ b/test/API/H5_api_dataset_test.c
@@ -8531,7 +8531,7 @@ test_dataset_compound_partial_io(void)
/* Write data */
if (H5Dwrite(dset_id, b_type_id, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf) < 0)
- PART_TEST_ERROR(write_full_read_full);
+ PART_TEST_ERROR(write_b_read_full);
/* Update fbuf to match file state - only element b was updated */
for (i = 0; i < DATASET_COMPOUND_PARTIAL_IO_DSET_DIMS; i++) {