summaryrefslogtreecommitdiffstats
path: root/tools/h5diff
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-11-26 15:59:53 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-11-26 15:59:53 (GMT)
commit5263086fe15b07cf460e6c5b525ca46eb7f81002 (patch)
tree5de22bd4daaf20390212e69d89f9cb4db244cf46 /tools/h5diff
parent0e77cc6fa0a284db7bf4192dca9e1e03e9e0b004 (diff)
downloadhdf5-5263086fe15b07cf460e6c5b525ca46eb7f81002.zip
hdf5-5263086fe15b07cf460e6c5b525ca46eb7f81002.tar.gz
hdf5-5263086fe15b07cf460e6c5b525ca46eb7f81002.tar.bz2
[svn-r19850] Problem: AIX prints some error messages when MPI_Abort is called. That caused
the output matching some problems. Solution: Add stderr filtering for AIX ERROR: messages. Tested: NCSA BP.
Diffstat (limited to 'tools/h5diff')
-rwxr-xr-xtools/h5diff/testh5diff.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh
index 2949f6a..d46ec22 100755
--- a/tools/h5diff/testh5diff.sh
+++ b/tools/h5diff/testh5diff.sh
@@ -176,6 +176,13 @@ STDOUT_FILTER() {
# LA-MPI: *** Copyright 2001-2004, ACL, Los Alamos National Laboratory
# 3. h5diff debug output:
# Debug output all have prefix "h5diff debug: ".
+# 4. AIX system prints messages like these when it is aborting:
+# ERROR: 0031-300 Forcing all remote tasks to exit due to exit code 1 in task 0
+# ERROR: 0031-250 task 4: Terminated
+# ERROR: 0031-250 task 3: Terminated
+# ERROR: 0031-250 task 2: Terminated
+# ERROR: 0031-250 task 1: Terminated
+
STDERR_FILTER() {
result_file=$1
tmp_file=/tmp/h5test_tmp_$$
@@ -187,9 +194,10 @@ STDERR_FILTER() {
fi
# Filter LANL MPI messages
# and LLNL srun messages
+ # and AIX error messages
if test -n "$pmode"; then
cp $result_file $tmp_file
- sed -e '/^LA-MPI:/d' -e '/^srun:/d' \
+ sed -e '/^LA-MPI:/d' -e '/^srun:/d' -e '/^ERROR:/d' \
< $tmp_file > $result_file
fi
# Filter h5diff debug output