Changeset 64466 in webkit


Ignore:
Timestamp:
Aug 2, 2010 9:26:03 AM (14 years ago)
Author:
tony@chromium.org
Message:

2010-08-02 Tony Chang <tony@chromium.org>

Reviewed by Kent Tamura.

[chromium] use ChromiumDriver on Linux when running webkit tests
https://bugs.webkit.org/show_bug.cgi?id=43273

  • Scripts/webkitpy/layout_tests/port/chromium.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r64463 r64466  
     12010-08-02  Tony Chang  <tony@chromium.org>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [chromium] use ChromiumDriver on Linux when running webkit tests
     6        https://bugs.webkit.org/show_bug.cgi?id=43273
     7
     8        * Scripts/webkitpy/layout_tests/port/chromium.py:
     9
    1102010-08-02  Kent Tamura  <tkent@chromium.org>
    211
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py

    r64249 r64466  
    4848from webkitpy.common.system.executive import Executive
    4949
    50 # Chromium DRT on non-Windows uses WebKitDriver.
    51 if sys.platform not in ('win32', 'cygwin'):
     50# Chromium DRT on OSX uses WebKitDriver.
     51if sys.platform == 'darwin':
    5252    import webkit
    5353
     
    173173    def create_driver(self, image_path, options):
    174174        """Starts a new Driver and returns a handle to it."""
    175         if self._options.use_drt and sys.platform not in ('win32', 'cygwin'):
     175        if self._options.use_drt and sys.platform == 'darwin':
    176176            return webkit.WebKitDriver(self, image_path, options, executive=self._executive)
    177177        if self._options.use_drt:
Note: See TracChangeset for help on using the changeset viewer.