diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-04-01 22:27:15 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-04-01 22:27:15 (GMT) |
commit | 362f22119d9cb25424f7cdf181219bfa6330b6b8 (patch) | |
tree | 4ffa1e4be8fecd337594ef32cc1da95c16bdf615 /hl/test/h5hltest.h | |
parent | 7022c013acb0ffac172d0ef99aa7d0205ab842c8 (diff) | |
download | hdf5-362f22119d9cb25424f7cdf181219bfa6330b6b8.zip hdf5-362f22119d9cb25424f7cdf181219bfa6330b6b8.tar.gz hdf5-362f22119d9cb25424f7cdf181219bfa6330b6b8.tar.bz2 |
[svn-r22228] Description:
Bring r22219 from trunk to 1.8 branch: (with release manager's blessing)
Merge "file image" changes from feature branch back to trunk.
Tested on:
h5committested
Diffstat (limited to 'hl/test/h5hltest.h')
-rw-r--r-- | hl/test/h5hltest.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hl/test/h5hltest.h b/hl/test/h5hltest.h index 466a0e1..809c4ec 100644 --- a/hl/test/h5hltest.h +++ b/hl/test/h5hltest.h @@ -23,9 +23,6 @@ #ifndef _H5HLTEST_H #define _H5HLTEST_H -/* Get the HDF5 public header */ -#include "hdf5.h" - /* Get the HDF5 test header */ #include "h5test.h" @@ -36,5 +33,8 @@ #define TESTING2(WHAT) {printf("%-70s", "Testing " WHAT); fflush(stdout);} #define TESTING3(WHAT) {printf("%-70s", "" WHAT); fflush(stdout);} +/* Implrements verbose 'assert' with 'goto error' exit */ +#define VERIFY(condition, string) do { if (!(condition)) FAIL_PUTS_ERROR(string) } while(0) + #endif /* _H5HLTEST_H */ |