diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-10-11 17:59:24 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-10-11 17:59:24 (GMT) |
commit | b19aa4522994f0a045280496e9ff0765c910c2a5 (patch) | |
tree | 4f6b76c3b5cecc5ba6e1d69404edca8eec66f765 /tools/h5diff | |
parent | b5bd1a150fe23e99774c85c9c83e0350bd3c3879 (diff) | |
download | hdf5-b19aa4522994f0a045280496e9ff0765c910c2a5.zip hdf5-b19aa4522994f0a045280496e9ff0765c910c2a5.tar.gz hdf5-b19aa4522994f0a045280496e9ff0765c910c2a5.tar.bz2 |
[svn-r5978] Purpose:
Bug Fix
Description:
Tests were failing on SOlaris machines.
Solution:
Added an explicit return value (0) to the script and main function.
Diffstat (limited to 'tools/h5diff')
-rw-r--r-- | tools/h5diff/h5diff.c | 1 | ||||
-rwxr-xr-x | tools/h5diff/testh5diff.sh | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/h5diff/h5diff.c b/tools/h5diff/h5diff.c index a1f42f8..15f7ac6 100644 --- a/tools/h5diff/h5diff.c +++ b/tools/h5diff/h5diff.c @@ -158,6 +158,7 @@ int main(int argc, const char *argv[]) + return 0; } diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh index c77aba5..14dc878 100755 --- a/tools/h5diff/testh5diff.sh +++ b/tools/h5diff/testh5diff.sh @@ -38,7 +38,7 @@ TESTING() { # TOOLTEST() { # Run test. - $RUNSERIAL $DUMPER_BIN "$@" + TESTING $RUNSERIAL $DUMPER_BIN "$@" } ############################################################################## @@ -50,3 +50,4 @@ TOOLTEST() { # test TOOLTEST -d dset h5diff_test1.h5 h5diff_test2.h5 +exit $nerrors |