summaryrefslogtreecommitdiffstats
path: root/test/timer.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 15:31:32 (GMT)
committerGitHub <noreply@github.com>2023-06-28 15:31:32 (GMT)
commit187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98 (patch)
treebaffa167d0796786241aef6b0ce76d4adec3b66e /test/timer.c
parent7a44581a84778a1346a2fd5b6cca7d9db905a321 (diff)
downloadhdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.zip
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.gz
hdf5-187ea8a9ae1405b5b46ca47a32fb1fb9e2686c98.tar.bz2
Rename HD(f)printf() to (f)printf() (#3194)
Diffstat (limited to 'test/timer.c')
-rw-r--r--test/timer.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/timer.c b/test/timer.c
index 9254596..d271f41 100644
--- a/test/timer.c
+++ b/test/timer.c
@@ -143,7 +143,7 @@ test_timer_system_user(void)
*/
if (timer.initial.system < 0.0 || timer.initial.user < 0.0) {
SKIPPED();
- HDprintf("NOTE: No suitable way to get system/user times on this platform.\n");
+ printf("NOTE: No suitable way to get system/user times on this platform.\n");
return 0;
}
@@ -380,7 +380,7 @@ main(void)
h5_reset();
- HDprintf("Testing platform-independent timer functionality.\n");
+ printf("Testing platform-independent timer functionality.\n");
nerrors += test_time_formatting() < 0 ? 1 : 0;
nerrors += test_timer_system_user() < 0 ? 1 : 0;
@@ -388,12 +388,11 @@ main(void)
nerrors += test_timer_functionality() < 0 ? 1 : 0;
if (nerrors) {
- HDprintf("***** %d platform-independent timer TEST%s FAILED! *****\n", nerrors,
- nerrors > 1 ? "S" : "");
+ printf("***** %d platform-independent timer TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : "");
return 1;
}
else {
- HDprintf("All platform-independent timer tests passed.\n");
+ printf("All platform-independent timer tests passed.\n");
return 0;
}
}