summaryrefslogtreecommitdiffstats
path: root/test/h5test.h
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2009-02-04 15:29:01 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2009-02-04 15:29:01 (GMT)
commit50fa98277db2e2dc4580be0a9b549106ee313535 (patch)
tree32d8b643b229a9124f3028292e1b82a4dce6be9e /test/h5test.h
parent4d0c4686ea004860eae5baff4ff55833db07ef41 (diff)
downloadhdf5-50fa98277db2e2dc4580be0a9b549106ee313535.zip
hdf5-50fa98277db2e2dc4580be0a9b549106ee313535.tar.gz
hdf5-50fa98277db2e2dc4580be0a9b549106ee313535.tar.bz2
[svn-r16419] #1449 Change set_extent test to use standard standalone test framework
Call h5_fixname (with an array of test filenames) for generating the filename to create and then call h5_cleanup() when the tests pass, to delete the files created and close the FAPL from h5_fileaccess(). Defined a macro #define TESTING2(WHAT) {printf(" Testing %-62s",WHAT); fflush(stdout);} Similar to TESTING, except that it has a initial indentation space. The effect is for nested loop tests Testing with old file format: Testing with fill value, no compression PASSED tested: windows, linux
Diffstat (limited to 'test/h5test.h')
-rw-r--r--test/h5test.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/h5test.h b/test/h5test.h
index dd3bb32..64d43cc 100644
--- a/test/h5test.h
+++ b/test/h5test.h
@@ -99,6 +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 PASSED() {puts(" PASSED");fflush(stdout);}
#define H5_FAILED() {puts("*FAILED*");fflush(stdout);}
#define H5_WARNING() {puts("*WARNING*");fflush(stdout);}