summaryrefslogtreecommitdiffstats
path: root/test/h5test.h
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2009-02-23 20:30:04 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2009-02-23 20:30:04 (GMT)
commitfe217cfd57234ed9ebe979253c54246154b29d93 (patch)
treecfb3de70045d200277d6f22cd67ed5f9cc34296c /test/h5test.h
parenta9f5945de0964e10cd6d1a3ef671cdb4bb4303e4 (diff)
downloadhdf5-fe217cfd57234ed9ebe979253c54246154b29d93.zip
hdf5-fe217cfd57234ed9ebe979253c54246154b29d93.tar.gz
hdf5-fe217cfd57234ed9ebe979253c54246154b29d93.tar.bz2
[svn-r16512] merge 16511 from trunk
bug fix: TESTING2 macro introduced recently for the test suite (it adds an extra space at the beginning of output, for indentation) was already available for HL and caused compilation problems on AIX. Replaced the name with TESTING_2 tested: h5committest
Diffstat (limited to 'test/h5test.h')
-rw-r--r--test/h5test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.h b/test/h5test.h
index 64d43cc..e3b3596 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -99,7 +99,7 @@ extern 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 TESTING2(WHAT) {printf(" Testing %-62s",WHAT); fflush(stdout);}
+#define TESTING_2(WHAT) {printf(" Testing %-62s",WHAT); fflush(stdout);}
#define PASSED() {puts(" PASSED");fflush(stdout);}
#define H5_FAILED() {puts("*FAILED*");fflush(stdout);}
#define H5_WARNING() {puts("*WARNING*");fflush(stdout);}