diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-06-17 13:33:36 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-06-17 13:33:36 (GMT) |
commit | 0d6e379701f8773b458e511b6444e43430170c5e (patch) | |
tree | 9ae291e61617a9369270046cc26f5bcc9a2bbbb8 /test/h5test.h | |
parent | d37e4e148819531404a68cd395dbef0d12cfee8a (diff) | |
download | hdf5-0d6e379701f8773b458e511b6444e43430170c5e.zip hdf5-0d6e379701f8773b458e511b6444e43430170c5e.tar.gz hdf5-0d6e379701f8773b458e511b6444e43430170c5e.tar.bz2 |
[svn-r10931] Purpose: Adjust Test Program and Rename
Description: Renamed test/dt_atomic.c to test/dt_arith.c(an abbreviation
of "arithmetic data types") to better describe the program. This checkin
broke down into three sections when the floating-point numbers are the
source, normalized, denormalized, and special values. If there's any
difference of destination values, only normalized value test reports
failure. The other 2 report only as warning.
Platforms tested: h5commitest and fuss
Misc. update: MANIFEST
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/h5test.h b/test/h5test.h index a0e5ea1..f261876 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -100,6 +100,7 @@ extern MPI_Info h5_io_info_g; /* MPI INFO object for IO */ #define TESTING(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);} #define SKIPPED() {puts(" -SKIP-");fflush(stdout);} #define TEST_ERROR {H5_FAILED(); AT(); goto error;} |