mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-23 16:20:57 +08:00
[svn-r11069] Purpose:
Bug fix Description: The testh5diff.sh script fails on mcr because of random srun messages thrown into the output Solution: Added some code to filter out the srun messages before the output is compared. Platforms tested: LLNL mcr Misc. update:
This commit is contained in:
parent
effd73de41
commit
48e977e9c8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user