diff options
author | Jordan Henderson <jhenderson@hdfgroup.org> | 2019-01-04 20:15:21 (GMT) |
---|---|---|
committer | Jordan Henderson <jhenderson@hdfgroup.org> | 2019-01-07 20:08:34 (GMT) |
commit | fe6bed2ad722578d0b701e29d22f591923d2fe9f (patch) | |
tree | 4f9cc59eee94d286ceee589dbeac381a07f8c321 | |
parent | b0feaecdb94739086f57981b5f80d3ceafcef183 (diff) | |
download | hdf5-fe6bed2ad722578d0b701e29d22f591923d2fe9f.zip hdf5-fe6bed2ad722578d0b701e29d22f591923d2fe9f.tar.gz hdf5-fe6bed2ad722578d0b701e29d22f591923d2fe9f.tar.bz2 |
Fix TESTING_2 macro to align output with TESTING macro
Add more indentation to TESTING_2 macro
-rw-r--r-- | test/h5test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.h b/test/h5test.h index c72f389..0aecdab 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -102,7 +102,7 @@ H5TEST_DLLVAR MPI_Info h5_io_info_g; /* MPI INFO object for IO */ * the H5_FAILED() macro is invoked automatically when an API function fails. */ #define TESTING(WHAT) {printf("Testing %-62s",WHAT); fflush(stdout);} -#define TESTING_2(WHAT) {printf(" Testing %-62s",WHAT); fflush(stdout);} +#define TESTING_2(WHAT) {printf(" Testing %-60s",WHAT); fflush(stdout);} #define PASSED() {puts(" PASSED");fflush(stdout);} #define H5_FAILED() {puts("*FAILED*");fflush(stdout);} #define H5_WARNING() {puts("*WARNING*");fflush(stdout);} |