diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-08-20 19:36:21 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-08-20 19:36:21 (GMT) |
commit | d96442aae5fe20ea2d6e7bfde75822bb09c9acbd (patch) | |
tree | 0831c7b1f5b69623b5e9c5f963525b49c54cfd5f /test | |
parent | 5fc9bd9a5efe450e6a9394a2c5e8baa17338b79e (diff) | |
download | hdf5-d96442aae5fe20ea2d6e7bfde75822bb09c9acbd.zip hdf5-d96442aae5fe20ea2d6e7bfde75822bb09c9acbd.tar.gz hdf5-d96442aae5fe20ea2d6e7bfde75822bb09c9acbd.tar.bz2 |
[svn-r17396] Added a comment to explain what "dst" and "ans" are when errors happen.
Tested on jam - simple change.
Diffstat (limited to 'test')
-rw-r--r-- | test/dt_arith.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c index 6c59555..abe56e8 100644 --- a/test/dt_arith.c +++ b/test/dt_arith.c @@ -2524,6 +2524,7 @@ test_conv_int_1(const char *name, hid_t src, hid_t dst) if (++fails_all_tests>=max_fails) { HDputs(" maximum failures reached, aborting test..."); + HDputs(" (dst is library's conversion output. ans is compiler's conversion output.)"); goto done; } } @@ -3359,6 +3360,7 @@ test_conv_flt_1 (const char *name, int run_test, hid_t src, hid_t dst) HDputs(" maximum failures reached, aborting test..."); else if(run_test==TEST_DENORM || run_test==TEST_SPECIAL) HDputs(" maximum warnings reached, aborting test..."); + HDputs(" (dst is library's conversion output. ans is compiler's conversion output.)"); goto done; } @@ -4488,6 +4490,7 @@ test_conv_int_fp(const char *name, int run_test, hid_t src, hid_t dst) HDputs(" maximum failures reached, aborting test..."); else if(run_test==TEST_DENORM || run_test==TEST_SPECIAL) HDputs(" maximum warnings reached, aborting test..."); + HDputs(" (dst is library's conversion output. ans is compiler's conversion output.)"); goto done; } |