Title: [274754] trunk/Tools
Revision
274754
Author
[email protected]
Date
2021-03-22 11:15:53 -0700 (Mon, 22 Mar 2021)

Log Message

Remove some spurious logging lines appearing in WebRTC tests
https://bugs.webkit.org/show_bug.cgi?id=223502

Reviewed by Alex Christensen.

* Scripts/webkitpy/port/mac.py:
(MacPort.logging_patterns_to_strip):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (274753 => 274754)


--- trunk/Tools/ChangeLog	2021-03-22 18:12:59 UTC (rev 274753)
+++ trunk/Tools/ChangeLog	2021-03-22 18:15:53 UTC (rev 274754)
@@ -1,3 +1,13 @@
+2021-03-22  Youenn Fablet  <[email protected]>
+
+        Remove some spurious logging lines appearing in WebRTC tests
+        https://bugs.webkit.org/show_bug.cgi?id=223502
+
+        Reviewed by Alex Christensen.
+
+        * Scripts/webkitpy/port/mac.py:
+        (MacPort.logging_patterns_to_strip):
+
 2021-03-22  Jean-Yves Avenard  <[email protected]>
 
         Add Jean-Yves Avenard to contributors.json

Modified: trunk/Tools/Scripts/webkitpy/port/mac.py (274753 => 274754)


--- trunk/Tools/Scripts/webkitpy/port/mac.py	2021-03-22 18:12:59 UTC (rev 274753)
+++ trunk/Tools/Scripts/webkitpy/port/mac.py	2021-03-22 18:15:53 UTC (rev 274754)
@@ -298,6 +298,13 @@
         # FIXME: Find where this is coming from and file a bug to have it removed (then remove this line).
         logging_patterns.append((re.compile('VP9 Info:.*\n'), ''))
 
+        # FIXME: Replace this with a defaults write after bots update to a build that has rdar://problem/74031400 fixed.
+        logging_patterns.append((r'Negotiation String:.*\n', ''))
+        logging_patterns.append((r'LRP.*\n', ''))
+        logging_patterns.append((r'.* \(seconds\) ', ''))
+        logging_patterns.append((r'.* 0  0 \[\]\n', ''))
+        logging_patterns.append((r'\[\]\n', ''))
+
         return logging_patterns
 
     def stderr_patterns_to_strip(self):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to