summaryrefslogtreecommitdiffstats
path: root/test/h5test.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 15:19:31 (GMT)
committerGitHub <noreply@github.com>2023-06-29 15:19:31 (GMT)
commitfd56a593b7928da636b2494b25cd7478fed78c29 (patch)
treeb815098d8bcf67f4290d3ca74132ce793503b94e /test/h5test.h
parent8aef67f0ae3e037df22c5319eb2eac8b95521b19 (diff)
downloadhdf5-fd56a593b7928da636b2494b25cd7478fed78c29.zip
hdf5-fd56a593b7928da636b2494b25cd7478fed78c29.tar.gz
hdf5-fd56a593b7928da636b2494b25cd7478fed78c29.tar.bz2
Remove HD from C std lib file ops (#3206)
* HDfclose * HDferror * HDfeof * HDfflush * HDfopen * HDfread * HDfwrite
Diffstat (limited to 'test/h5test.h')
-rw-r--r--test/h5test.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/h5test.h b/test/h5test.h
index 3382eb4..ce6a0ea 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -105,36 +105,36 @@ H5TEST_DLLVAR MPI_Info h5_io_info_g; /* MPI INFO object for IO */
#define TESTING(WHAT) \
do { \
printf("Testing %-62s", WHAT); \
- HDfflush(stdout); \
+ fflush(stdout); \
n_tests_run_g++; \
} while (0)
#define TESTING_2(WHAT) \
do { \
printf(" Testing %-60s", WHAT); \
- HDfflush(stdout); \
+ fflush(stdout); \
n_tests_run_g++; \
} while (0)
#define PASSED() \
do { \
HDputs(" PASSED"); \
- HDfflush(stdout); \
+ fflush(stdout); \
n_tests_passed_g++; \
} while (0)
#define H5_FAILED() \
do { \
HDputs("*FAILED*"); \
- HDfflush(stdout); \
+ fflush(stdout); \
n_tests_failed_g++; \
} while (0)
#define H5_WARNING() \
do { \
HDputs("*WARNING*"); \
- HDfflush(stdout); \
+ fflush(stdout); \
} while (0)
#define SKIPPED() \
do { \
HDputs(" -SKIP-"); \
- HDfflush(stdout); \
+ fflush(stdout); \
n_tests_skipped_g++; \
} while (0)
#define PUTS_ERROR(s) \
@@ -176,7 +176,7 @@ H5TEST_DLLVAR MPI_Info h5_io_info_g; /* MPI INFO object for IO */
do { \
printf("Testing %-62s", WHAT); \
HDputs(""); \
- HDfflush(stdout); \
+ fflush(stdout); \
} while (0)
/*