summaryrefslogtreecommitdiffstats
path: root/test/cache_tagging.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-07-09 10:05:53 (GMT)
committerGitHub <noreply@github.com>2022-07-09 10:05:53 (GMT)
commit1227bc041118e1c9fb3fdd48c083186f5deb4676 (patch)
tree0cddd12b3652faaf7adf242b2ed936d127fae454 /test/cache_tagging.c
parent57cc499009f49b40505b8b3c1ca3e405c6447a16 (diff)
downloadhdf5-1227bc041118e1c9fb3fdd48c083186f5deb4676.zip
hdf5-1227bc041118e1c9fb3fdd48c083186f5deb4676.tar.gz
hdf5-1227bc041118e1c9fb3fdd48c083186f5deb4676.tar.bz2
Sync with develop (#1863)feature/onion_vfd
Diffstat (limited to 'test/cache_tagging.c')
-rw-r--r--test/cache_tagging.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cache_tagging.c b/test/cache_tagging.c
index 4d07116..f1571f0 100644
--- a/test/cache_tagging.c
+++ b/test/cache_tagging.c
@@ -839,7 +839,7 @@ check_multi_group_creation_tags(void)
for (i = 0; i < MULTIGROUPS; i++) {
- HDsprintf(gname, "%d", i);
+ HDsnprintf(gname, sizeof(gname), "%d", i);
if ((gid = H5Gcreate2(fid, gname, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Gclose(gid) < 0)
@@ -861,7 +861,7 @@ check_multi_group_creation_tags(void)
for (i = 0; i < MULTIGROUPS; i++) {
/* Re-open the group */
- HDsprintf(gname, "%d", i);
+ HDsnprintf(gname, sizeof(gname), "%d", i);
if ((gid = H5Gopen2(fid, gname, H5P_DEFAULT)) < 0)
TEST_ERROR;
@@ -988,7 +988,7 @@ check_link_iteration_tags(void)
/* Create many datasets in root group */
for (i = 0; i < 500; i++) {
- HDsprintf(dsetname, "Dset %d", i);
+ HDsnprintf(dsetname, sizeof(dsetname), "Dset %d", i);
if ((did = H5Dcreate2(fid, dsetname, H5T_NATIVE_UCHAR, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) <
0)
TEST_ERROR;
@@ -1151,7 +1151,7 @@ check_dense_attribute_tags(void)
for (i = 0; i < 50; i++) {
- HDsprintf(attrname, "attr %d", i);
+ HDsnprintf(attrname, sizeof(attrname), "attr %d", i);
if ((aid = H5Acreate2(did, attrname, H5T_NATIVE_UINT, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Awrite(aid, H5T_NATIVE_UINT, &i) < 0)