diff options
Diffstat (limited to 'hl/test/h5hltest.h')
-rw-r--r-- | hl/test/h5hltest.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/hl/test/h5hltest.h b/hl/test/h5hltest.h index 2776204..e6c2614 100644 --- a/hl/test/h5hltest.h +++ b/hl/test/h5hltest.h @@ -25,17 +25,15 @@ /* Get the HDF5 public header */ #include "hdf5.h" +/* Get the HDF5 test header */ +#include "h5test.h" + /* Include the High-Level private header */ #include "H5HLprivate2.h" -/* These are copied from the test/h5test.h header */ -#define TESTING(WHAT) {printf("%-70s", "Testing " WHAT); fflush(stdout);} +/* Macros used in HL tests */ #define TESTING2(WHAT) {printf("%-70s", "Testing " WHAT); fflush(stdout);} #define TESTING3(WHAT) {printf("%-70s", "" WHAT); fflush(stdout);} -#define PASSED() {puts(" PASSED");fflush(stdout);} -#define H5_FAILED() {puts("*FAILED*");fflush(stdout);} -#define SKIPPED() {puts(" -SKIP-");fflush(stdout);} -#define EXAMPLE(WHAT) {printf("%-70s", "Example " WHAT); fflush(stdout);} #endif /* _H5HLTEST_H */ |