Title: [281988] trunk/Tools
Revision
281988
Author
you...@apple.com
Date
2021-09-03 06:28:06 -0700 (Fri, 03 Sep 2021)

Log Message

Remove all WTR output before Content-Type:text/plain for WebRTC tests on BigSur
https://bugs.webkit.org/show_bug.cgi?id=229552
<rdar://problem/82390178>

Reviewed by Jonathan Bedard.

Previously we were removing stdout logging according certain patterns for webrtc tests.
Based on bot results, we now remove any stdout logging for WebRTC tests, but only for BigSur.
For that purpose, we add the empty string as detector when needed.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (281987 => 281988)


--- trunk/Tools/ChangeLog	2021-09-03 13:12:25 UTC (rev 281987)
+++ trunk/Tools/ChangeLog	2021-09-03 13:28:06 UTC (rev 281988)
@@ -1,3 +1,18 @@
+2021-09-03  Youenn Fablet  <you...@apple.com>
+
+        Remove all WTR output before Content-Type:text/plain for WebRTC tests on BigSur
+        https://bugs.webkit.org/show_bug.cgi?id=229552
+        <rdar://problem/82390178>
+
+        Reviewed by Jonathan Bedard.
+
+        Previously we were removing stdout logging according certain patterns for webrtc tests.
+        Based on bot results, we now remove any stdout logging for WebRTC tests, but only for BigSur.
+        For that purpose, we add the empty string as detector when needed.
+
+        * Scripts/webkitpy/port/mac.py:
+        (MacPort.logging_detectors_to_strip_text_start):
+
 2021-09-02  Lauro Moura  <lmo...@igalia.com>
 
         [GLIB] Install lcms2 in helper dependencies script

Modified: trunk/Tools/Scripts/webkitpy/port/mac.py (281987 => 281988)


--- trunk/Tools/Scripts/webkitpy/port/mac.py	2021-09-03 13:12:25 UTC (rev 281987)
+++ trunk/Tools/Scripts/webkitpy/port/mac.py	2021-09-03 13:28:06 UTC (rev 281988)
@@ -295,9 +295,8 @@
     def logging_detectors_to_strip_text_start(self, test_name):
         logging_detectors = []
 
-        if 'webrtc' in test_name:
-            logging_detectors.append('Negotiation String:')
-            logging_detectors.append('LRP')
+        if 'webrtc' in test_name and self._os_version.major == 11:
+            logging_detectors.append('')
 
         return logging_detectors
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to