Changeset 89483 in webkit


Ignore:
Timestamp:
Jun 22, 2011 2:52:30 PM (13 years ago)
Author:
dpranke@chromium.org
Message:

2011-06-22 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai.

nrwt: don't look for http lock when running the test port
https://bugs.webkit.org/show_bug.cgi?id=63158

  • Scripts/webkitpy/layout_tests/port/mock_drt.py:
  • Scripts/webkitpy/layout_tests/port/test.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r89482 r89483  
     12011-06-22  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        nrwt: don't look for http lock when running the test port
     6        https://bugs.webkit.org/show_bug.cgi?id=63158
     7
     8        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
     9        * Scripts/webkitpy/layout_tests/port/test.py:
     10
    1112011-06-22  Balazs Kelemen  <kbalazs@webkit.org>
    212
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/mock_drt.py

    r87847 r89483  
    6363        return getattr(self.__delegate, name)
    6464
    65     def acquire_http_lock(self):
    66         pass
    67 
    68     def release_http_lock(self):
    69         pass
    70 
    7165    def check_build(self, needs_http):
    7266        return True
     
    110104        pass
    111105
     106    def acquire_http_lock(self):
     107        pass
     108
    112109    def stop_helper(self):
    113110        pass
     
    117114
    118115    def stop_websocket_server(self):
     116        pass
     117
     118    def release_http_lock(self):
    119119        pass
    120120
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py

    r86696 r89483  
    339339        pass
    340340
     341    def acquire_http_lock(self):
     342        pass
     343
    341344    def stop_http_server(self):
    342345        pass
    343346
    344347    def stop_websocket_server(self):
     348        pass
     349
     350    def release_http_lock(self):
    345351        pass
    346352
Note: See TracChangeset for help on using the changeset viewer.