summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2014-04-25 21:21:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2014-04-25 21:21:55 (GMT)
commit1c3f9457396ba4a5f46a20423b205ed1e2b9c323 (patch)
treeea9b7b4b3e766e4fac3041c7ad5cd9ee248d46be /tools
parent97525f97f2db83b22193cac7c4641135cf6eebf4 (diff)
downloadhdf5-1c3f9457396ba4a5f46a20423b205ed1e2b9c323.zip
hdf5-1c3f9457396ba4a5f46a20423b205ed1e2b9c323.tar.gz
hdf5-1c3f9457396ba4a5f46a20423b205ed1e2b9c323.tar.bz2
[svn-r25112] Description:
Revert r25081 Tested on: MacOSX/64 10.9.2 (amazon) w/FORTRAN & parallel (h5committest not necessary)
Diffstat (limited to 'tools')
-rw-r--r--tools/h5diff/ph5diff_main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/h5diff/ph5diff_main.c b/tools/h5diff/ph5diff_main.c
index 62e1e73..a26b6e9 100644
--- a/tools/h5diff/ph5diff_main.c
+++ b/tools/h5diff/ph5diff_main.c
@@ -321,6 +321,9 @@ void h5diff_exit(int status)
status = EXIT_SUCCESS; /* Reset exit status, since some mpiexec commands generate output on failure status */
}
- exit(status);
+ /* Always exit(0), since MPI implementations do weird stuff when they
+ * receive a non-zero exit value. - QAK
+ */
+ exit(0);
}