Title: [237741] trunk/Tools
Revision
237741
Author
[email protected]
Date
2018-11-02 10:42:46 -0700 (Fri, 02 Nov 2018)

Log Message

[GTK][WPE] Enable GST_DEBUG_NO_COLOR environment variable pass-through

Rubber-stamped by Michael Catanzaro.

This variable is useful to get rid of shell color escapes in tests stderr files.

* Scripts/webkitpy/port/gtk.py:
(GtkPort.setup_environ_for_server):
* Scripts/webkitpy/port/wpe.py:
(WPEPort.setup_environ_for_server):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (237740 => 237741)


--- trunk/Tools/ChangeLog	2018-11-02 17:35:41 UTC (rev 237740)
+++ trunk/Tools/ChangeLog	2018-11-02 17:42:46 UTC (rev 237741)
@@ -1,3 +1,16 @@
+2018-11-02  Philippe Normand  <[email protected]>
+
+        [GTK][WPE] Enable GST_DEBUG_NO_COLOR environment variable pass-through
+
+        Rubber-stamped by Michael Catanzaro.
+
+        This variable is useful to get rid of shell color escapes in tests stderr files.
+
+        * Scripts/webkitpy/port/gtk.py:
+        (GtkPort.setup_environ_for_server):
+        * Scripts/webkitpy/port/wpe.py:
+        (WPEPort.setup_environ_for_server):
+
 2018-11-02  Aakash Jain  <[email protected]>
 
         Add Basic Django web app for OpenSource EWS

Modified: trunk/Tools/Scripts/webkitpy/port/gtk.py (237740 => 237741)


--- trunk/Tools/Scripts/webkitpy/port/gtk.py	2018-11-02 17:35:41 UTC (rev 237740)
+++ trunk/Tools/Scripts/webkitpy/port/gtk.py	2018-11-02 17:42:46 UTC (rev 237741)
@@ -127,6 +127,7 @@
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG')
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_DUMP_DOT_DIR')
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_FILE')
+        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_NO_COLOR')
 
         # Configure the software libgl renderer if jhbuild ready and we test inside a virtualized window system
         if self._driver_class() in [XvfbDriver, WestonDriver] and (self._should_use_jhbuild() or self._is_flatpak()):

Modified: trunk/Tools/Scripts/webkitpy/port/wpe.py (237740 => 237741)


--- trunk/Tools/Scripts/webkitpy/port/wpe.py	2018-11-02 17:35:41 UTC (rev 237740)
+++ trunk/Tools/Scripts/webkitpy/port/wpe.py	2018-11-02 17:42:46 UTC (rev 237741)
@@ -81,6 +81,7 @@
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG')
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_DUMP_DOT_DIR')
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_FILE')
+        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_NO_COLOR')
         return environment
 
     def check_sys_deps(self):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to