summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattjala <124107509+mattjala@users.noreply.github.com>2024-01-25 16:57:31 (GMT)
committerGitHub <noreply@github.com>2024-01-25 16:57:31 (GMT)
commit853a7c6c9ca3a5ea1a0739776d319221dc96e8d8 (patch)
tree0a058017acb1c4bf11727061e2d95e03cd9e24c3
parent424f3803ea032ff7859ce9e31986446cd4980d52 (diff)
downloadhdf5-853a7c6c9ca3a5ea1a0739776d319221dc96e8d8.zip
hdf5-853a7c6c9ca3a5ea1a0739776d319221dc96e8d8.tar.gz
hdf5-853a7c6c9ca3a5ea1a0739776d319221dc96e8d8.tar.bz2
Fix potential infinite loop in API test (#3960)
-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++) {