Title: [210547] trunk/Tools
Revision
210547
Author
clo...@igalia.com
Date
2017-01-10 09:07:33 -0800 (Tue, 10 Jan 2017)

Log Message

[GTK] Stop honoring the environment variable USE_NATIVE_XDISPLAY
https://bugs.webkit.org/show_bug.cgi?id=165232

Unreviewed follow-up patch after r210539 and r210523.

Instead of using that environment variable, the argument
--display-server=xorg should be passed now.

The GTK+ performance bot was the only bot using this, and is
already passing --display-server=xorg after r210539.

* Scripts/webkitpy/port/gtk.py:
(GtkPort._driver_class):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (210546 => 210547)


--- trunk/Tools/ChangeLog	2017-01-10 15:07:46 UTC (rev 210546)
+++ trunk/Tools/ChangeLog	2017-01-10 17:07:33 UTC (rev 210547)
@@ -1,5 +1,21 @@
 2017-01-10  Carlos Alberto Lopez Perez  <clo...@igalia.com>
 
+        [GTK] Stop honoring the environment variable USE_NATIVE_XDISPLAY
+        https://bugs.webkit.org/show_bug.cgi?id=165232
+
+        Unreviewed follow-up patch after r210539 and r210523.
+
+        Instead of using that environment variable, the argument
+        --display-server=xorg should be passed now.
+
+        The GTK+ performance bot was the only bot using this, and is
+        already passing --display-server=xorg after r210539.
+
+        * Scripts/webkitpy/port/gtk.py:
+        (GtkPort._driver_class):
+
+2017-01-10  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
         [GTK] Add a new release test bot for Wayland and pass --display-server=xorg to the GTK Perf bot.
         https://bugs.webkit.org/show_bug.cgi?id=166872
 

Modified: trunk/Tools/Scripts/webkitpy/port/gtk.py (210546 => 210547)


--- trunk/Tools/Scripts/webkitpy/port/gtk.py	2017-01-10 15:07:46 UTC (rev 210546)
+++ trunk/Tools/Scripts/webkitpy/port/gtk.py	2017-01-10 17:07:33 UTC (rev 210547)
@@ -83,8 +83,7 @@
             return WestonDriver
         if self._display_server == "wayland":
             return WaylandDriver
-        # FIXME: re-configure the perf bot to pass --display-server=xorg
-        if self._display_server == "xorg" or os.environ.get("USE_NATIVE_XDISPLAY"):
+        if self._display_server == "xorg":
             return XorgDriver
         return XvfbDriver
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to