summaryrefslogtreecommitdiffstats
path: root/test/ohdr.c
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2004-05-03 15:39:45 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2004-05-03 15:39:45 (GMT)
commit1d381a91e759443cbde4620c254d658eff1e8f6f (patch)
treebc969e4ff70b2db06992a33d71c8b66101c27fc3 /test/ohdr.c
parent8007d70e95b6ffadb01f8b745e5fa629957bf4ee (diff)
downloadhdf5-1d381a91e759443cbde4620c254d658eff1e8f6f.zip
hdf5-1d381a91e759443cbde4620c254d658eff1e8f6f.tar.gz
hdf5-1d381a91e759443cbde4620c254d658eff1e8f6f.tar.bz2
[svn-r8469] Purpose:
bug fix Description: 1. windows cannot recongize long long. We agree to use long_long to represent all "long long" compatible data types. 2. windows test can not check error code, it depends on error messages to be returned. This will be fixed in the future. In odhr.c, somehow only error value1 is generated, there are no error message even if some tests are missing. So just add an error message when error code is 1. Solution: change long long to long_long in dtypes.c; Add an error message when error code is not 0 in ohdr.c Platforms tested: eirene(fortran), arabica(fortran) Misc. update:
Diffstat (limited to 'test/ohdr.c')
-rw-r--r--test/ohdr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ohdr.c b/test/ohdr.c
index 5ddabe6..a893d08 100644
--- a/test/ohdr.c
+++ b/test/ohdr.c
@@ -406,6 +406,7 @@ main(void)
return 0;
error:
+ puts("*** TESTS FAILED ***");
H5E_BEGIN_TRY {
H5Fclose(file);
} H5E_END_TRY;