Title: [183540] trunk/Tools
Revision
183540
Author
[email protected]
Date
2015-04-29 04:14:51 -0700 (Wed, 29 Apr 2015)

Log Message

[EFL] Allow to run the tests on the native X display
https://bugs.webkit.org/show_bug.cgi?id=144247

Patch by Hunseop Jeong <[email protected]> on 2015-04-29
Reviewed by Gyuyoung Kim.

Added the USE_NATIVE_XDISPLAY option for the WTR.
We can select the Xorg driver if environment variable is set up before running the tests.

* Scripts/webkitpy/port/efl.py:
(EflPort._driver_class):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (183539 => 183540)


--- trunk/Tools/ChangeLog	2015-04-29 09:58:42 UTC (rev 183539)
+++ trunk/Tools/ChangeLog	2015-04-29 11:14:51 UTC (rev 183540)
@@ -1,3 +1,16 @@
+2015-04-29  Hunseop Jeong  <[email protected]>
+
+        [EFL] Allow to run the tests on the native X display
+        https://bugs.webkit.org/show_bug.cgi?id=144247
+
+        Reviewed by Gyuyoung Kim.
+
+        Added the USE_NATIVE_XDISPLAY option for the WTR.
+        We can select the Xorg driver if environment variable is set up before running the tests.
+
+        * Scripts/webkitpy/port/efl.py:
+        (EflPort._driver_class):
+
 2015-04-29  Joonghun Park  <[email protected]>
 
         [GTK] Add libnotify-dev in gtk install-dependencies

Modified: trunk/Tools/Scripts/webkitpy/port/efl.py (183539 => 183540)


--- trunk/Tools/Scripts/webkitpy/port/efl.py	2015-04-29 09:58:42 UTC (rev 183539)
+++ trunk/Tools/Scripts/webkitpy/port/efl.py	2015-04-29 11:14:51 UTC (rev 183540)
@@ -33,6 +33,7 @@
 from webkitpy.layout_tests.models.test_configuration import TestConfiguration
 from webkitpy.port.base import Port
 from webkitpy.port.pulseaudio_sanitizer import PulseAudioSanitizer
+from webkitpy.port.xorgdriver import XorgDriver
 from webkitpy.port.xvfbdriver import XvfbDriver
 from webkitpy.port.linux_get_crash_log import GDBCrashLogGenerator
 
@@ -97,8 +98,8 @@
         return [TestConfiguration(version=self._version, architecture='x86', build_type=build_type) for build_type in self.ALL_BUILD_TYPES]
 
     def _driver_class(self):
-        if os.environ.get("DISABLE_XVFB_DRIVER"):
-            return Port._driver_class(self)
+        if os.environ.get("USE_NATIVE_XDISPLAY"):
+            return XorgDriver
         return XvfbDriver
 
     def _path_to_driver(self):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to