diff options
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/h5test.h b/test/h5test.h index 8c10faf..4add74c 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -104,9 +104,9 @@ extern MPI_Info h5_io_info_g; /* MPI INFO object for IO */ #define H5_WARNING() {puts("*WARNING*");fflush(stdout);} #define SKIPPED() {puts(" -SKIP-");fflush(stdout);} #define TEST_ERROR {H5_FAILED(); AT(); goto error;} -#define STACK_ERROR {H5Eprint_stack(H5E_DEFAULT, stdout); goto error;} -#define FAIL_STACK_ERROR {H5_FAILED(); AT(); \ - H5Eprint_stack(H5E_DEFAULT, stdout); goto error;} +#define STACK_ERROR {H5Eprint2(H5E_DEFAULT, stdout); goto error;} +#define FAIL_STACK_ERROR {H5_FAILED(); AT(); H5Eprint2(H5E_DEFAULT, stdout); \ + goto error;} #define FAIL_PUTS_ERROR(s) {H5_FAILED(); AT(); puts(s); goto error;} /* |