* lib/target.exp (prune_warnings): Handle "nfs server .* not
authorBen Elliston <bje@gnu.org>
Sun, 27 Jul 2003 23:30:49 +0000 (23:30 +0000)
committerBen Elliston <bje@gnu.org>
Sun, 27 Jul 2003 23:30:49 +0000 (23:30 +0000)
responding" and "nfs server .* is alive again".

ChangeLog
lib/target.exp

index be516fa..10aefcb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-25  Mike Stump  <mrs@apple.com>
+
+       * lib/target.exp (prune_warnings): Handle "nfs server .* not
+       responding" and "nfs server .* is alive again".
+
 2003-07-20  Ben Elliston  <bje@wasabisystems.com>
 
        * config.guess: Update to most recent version.
index 1152011..0cc3c9f 100644 (file)
@@ -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