diff options
-rwxr-xr-x | tools/h5diff/testh5diff.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/h5diff/testh5diff.sh b/tools/h5diff/testh5diff.sh index 3ff3853..68be352 100755 --- a/tools/h5diff/testh5diff.sh +++ b/tools/h5diff/testh5diff.sh @@ -92,9 +92,10 @@ STDERR_FILTER() { < $tmp_file > $result_file fi # Filter LANL MPI messages + # and LLNL srun messages if test -n "$pmode"; then cp $result_file $tmp_file - sed -e '/^LA-MPI:/d' \ + sed -e '/^LA-MPI:/d' -e '/^srun:/d' \ < $tmp_file > $result_file fi rm -f $tmp_file |