summaryrefslogtreecommitdiffstats
path: root/test/big.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-09-15 22:13:18 (GMT)
committerGitHub <noreply@github.com>2023-09-15 22:13:18 (GMT)
commit44a00ef876ad3e1922847e93feac57c479217fbe (patch)
tree5e9fc677913a06a71eba1342633f92e93bd07a6c /test/big.c
parent59a90368cdb696205bdf15040d1a48b4f69af97f (diff)
downloadhdf5-44a00ef876ad3e1922847e93feac57c479217fbe.zip
hdf5-44a00ef876ad3e1922847e93feac57c479217fbe.tar.gz
hdf5-44a00ef876ad3e1922847e93feac57c479217fbe.tar.bz2
Strip HD prefix from string/char C API calls (#3540)
* Strip HD prefix from string/char C API calls * HD(f)(put|get)(s|c) * HDstr* * HDv*printf * HD(s)(print|scan)f * HDperror But NOT: * HDstrcase* * HDvasprintf * HDstrtok_r * HDstrndup As those are not C99 and have portability work-around implementations. They will be handled later. * Fix th5_system.c screwup
Diffstat (limited to 'test/big.c')
-rw-r--r--test/big.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/test/big.c b/test/big.c
index 748521e..fc422b1 100644
--- a/test/big.c
+++ b/test/big.c
@@ -263,7 +263,7 @@ enough_room(hid_t fapl)
/* Create files */
for (i = 0; i < NELMTS(fd); i++) {
- HDsnprintf(name, sizeof(name), filename, i);
+ snprintf(name, sizeof(name), filename, i);
if ((fd[i] = HDopen(name, O_RDWR | O_CREAT | O_TRUNC, H5_POSIX_CREATE_MODE_RW)) < 0) {
goto done;
}
@@ -278,7 +278,7 @@ enough_room(hid_t fapl)
done:
for (i = 0; i < NELMTS(fd) && fd[i] >= 0; i++) {
- HDsnprintf(name, sizeof(name), filename, i);
+ snprintf(name, sizeof(name), filename, i);
if (HDclose(fd[i]) < 0)
ret_value = 0;
HDremove(name);
@@ -475,7 +475,7 @@ reader(char *filename, hid_t fapl)
FAIL_STACK_ERROR;
/* Read each region */
- while (HDfgets(ln, (int)sizeof(ln), script)) {
+ while (fgets(ln, (int)sizeof(ln), script)) {
if ('#' != ln[0])
break;
i = (int)strtol(ln + 1, &s, 10);
@@ -501,7 +501,7 @@ reader(char *filename, hid_t fapl)
}
else if (wrong) {
SKIPPED();
- HDputs(" Possible overlap with another region.");
+ puts(" Possible overlap with another region.");
nerrors++;
}
else {
@@ -576,7 +576,7 @@ test_sec2(hid_t fapl)
goto quit;
}
/* Test big file with the SEC2 driver */
- HDputs("Testing big file with the SEC2 Driver ");
+ puts("Testing big file with the SEC2 Driver ");
h5_fixname(FILENAME[1], fapl, filename, sizeof filename);
@@ -585,7 +585,7 @@ test_sec2(hid_t fapl)
if (reader(filename, fapl))
goto error;
- HDputs("Test passed with the SEC2 Driver.");
+ puts("Test passed with the SEC2 Driver.");
quit:
/* End with normal return code */
@@ -595,7 +595,7 @@ quit:
return 0;
error:
- HDputs("*** TEST FAILED ***");
+ puts("*** TEST FAILED ***");
return 1;
} /* end test_sec2() */
@@ -610,7 +610,7 @@ test_stdio(hid_t fapl)
fprintf(stdout, "Test for stdio is skipped because file system does not support big files.\n");
goto quit;
}
- HDputs("\nTesting big file with the STDIO Driver ");
+ puts("\nTesting big file with the STDIO Driver ");
h5_fixname(FILENAME[2], fapl, filename, sizeof filename);
@@ -618,7 +618,7 @@ test_stdio(hid_t fapl)
goto error;
if (reader(filename, fapl))
goto error;
- HDputs("Test passed with the STDIO Driver.");
+ puts("Test passed with the STDIO Driver.");
/* Flush stdout at the end of this test routine to ensure later
* output to stderr will not come out before it.
@@ -633,7 +633,7 @@ quit:
return 0;
error:
- HDputs("*** TEST FAILED ***");
+ puts("*** TEST FAILED ***");
fflush(stdout);
return 1;
} /* end test_stdio() */
@@ -644,7 +644,7 @@ test_family(hid_t fapl)
char filename[1024];
/* Test huge file with the family driver */
- HDputs("Testing big file with the Family Driver ");
+ puts("Testing big file with the Family Driver ");
if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
goto error;
@@ -656,14 +656,14 @@ test_family(hid_t fapl)
* We shouldn't run this test if the file system doesn't support holes
* because we would generate multi-gigabyte files.
*/
- HDputs("Checking if file system is adequate for this test...");
+ puts("Checking if file system is adequate for this test...");
if (!sparse_support) {
- HDputs("Test skipped because file system does not support holes.");
+ puts("Test skipped because file system does not support holes.");
usage();
goto quit;
}
if (!enough_room(fapl)) {
- HDputs("Test skipped because of quota (file size or num open files).");
+ puts("Test skipped because of quota (file size or num open files).");
usage();
goto quit;
}
@@ -677,7 +677,7 @@ test_family(hid_t fapl)
if (reader(filename, fapl))
goto error;
- HDputs("Test passed with the Family Driver.");
+ puts("Test passed with the Family Driver.");
quit:
/* End with normal return code */
@@ -687,7 +687,7 @@ quit:
return 0;
error:
- HDputs("*** TEST FAILED ***");
+ puts("*** TEST FAILED ***");
return 1;
} /* end test_family() */
@@ -713,7 +713,7 @@ main(int ac, char **av)
while (--ac > 0) {
av++;
- if (HDstrcmp("-fsize", *av) == 0) {
+ if (strcmp("-fsize", *av) == 0) {
/* specify a different family file size */
ac--;
av++;
@@ -726,11 +726,11 @@ main(int ac, char **av)
return 1;
}
}
- else if (HDstrcmp("-c", *av) == 0) {
+ else if (strcmp("-c", *av) == 0) {
/* turn off file system check before test */
cflag = 0;
}
- else if (HDstrcmp("-h", *av) == 0) {
+ else if (strcmp("-h", *av) == 0) {
usage();
return 0;
}
@@ -772,14 +772,14 @@ main(int ac, char **av)
goto error;
}
else
- HDputs("This VFD is not supported");
+ puts("This VFD is not supported");
/* End with normal exit code */
/* fapls are cleaned up in the vfd test code */
return 0;
error:
- HDputs("*** TEST FAILED ***");
+ puts("*** TEST FAILED ***");
if (fapl > 0)
H5Pclose(fapl);
return 1;