diff options
author | Ben Elliston <bje@gnu.org> | 2003-07-27 23:30:49 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2003-07-27 23:30:49 +0000 |
commit | 61ac4220ae1099ebb5703a0d88db857ba29ca9c3 (patch) | |
tree | 01c5d7a3ee11a5c803d37811124d7f276c87865d /lib/target.exp | |
parent | 6dbfa0fd3356b7bb18e87ff03c8b26807518d373 (diff) | |
download | dejagnu-61ac4220ae1099ebb5703a0d88db857ba29ca9c3.zip dejagnu-61ac4220ae1099ebb5703a0d88db857ba29ca9c3.tar.gz dejagnu-61ac4220ae1099ebb5703a0d88db857ba29ca9c3.tar.bz2 |
* lib/target.exp (prune_warnings): Handle "nfs server .* not
responding" and "nfs server .* is alive again".
Diffstat (limited to 'lib/target.exp')
-rw-r--r-- | lib/target.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/target.exp b/lib/target.exp index 1152011..0cc3c9f 100644 --- a/lib/target.exp +++ b/lib/target.exp @@ -225,8 +225,8 @@ proc prune_warnings { text } { regsub -all "(^|\n)(cc1plus: warning: -g is only supported when using GAS on this processor\[^\n\]*\ncc1plus: warning:\[^\n\]*\n?)+" $text "\\1" text # This happens when testing across NFS. - regsub -all "(^|\n)(NFS server \[^\n\]* not responding still trying\[^\n\]*\n?)+" $text "\\1" text - regsub -all "(^|\n)(NFS server \[^\n\]* ok\[^\n\]*\n?)+" $text "\\1" text + regsub -all "(^|\n)((NFS|nfs) server \[^\n\]* not responding\[^\n\]*\n?)+" $text "\\1" text + regsub -all "(^|\n)((NFS|nfs) server \[^\n\]* (ok|is alive again)\[^\n\]*\n?)+" $text "\\1" text # This happens when testing across NFS on osf4. regsub -all "(^|\n)(NFS3 server \[^\n\]* not responding still trying\[^\n\]*\n?)+" $text "\\1" text |