Title: [89483] trunk/Tools
- Revision
- 89483
- Author
- [email protected]
- Date
- 2011-06-22 14:52:30 -0700 (Wed, 22 Jun 2011)
Log Message
2011-06-22 Dirk Pranke <[email protected]>
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:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (89482 => 89483)
--- trunk/Tools/ChangeLog 2011-06-22 21:40:58 UTC (rev 89482)
+++ trunk/Tools/ChangeLog 2011-06-22 21:52:30 UTC (rev 89483)
@@ -1,3 +1,13 @@
+2011-06-22 Dirk Pranke <[email protected]>
+
+ 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:
+
2011-06-22 Balazs Kelemen <[email protected]>
Reviewed by Andreas Kling.
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/mock_drt.py (89482 => 89483)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/mock_drt.py 2011-06-22 21:40:58 UTC (rev 89482)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/mock_drt.py 2011-06-22 21:52:30 UTC (rev 89483)
@@ -62,12 +62,6 @@
def __getattr__(self, name):
return getattr(self.__delegate, name)
- def acquire_http_lock(self):
- pass
-
- def release_http_lock(self):
- pass
-
def check_build(self, needs_http):
return True
@@ -109,6 +103,9 @@
def start_websocket_server(self):
pass
+ def acquire_http_lock(self):
+ pass
+
def stop_helper(self):
pass
@@ -118,7 +115,10 @@
def stop_websocket_server(self):
pass
+ def release_http_lock(self):
+ pass
+
def main(argv, fs, stdin, stdout, stderr):
"""Run the tests."""
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py (89482 => 89483)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py 2011-06-22 21:40:58 UTC (rev 89482)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py 2011-06-22 21:52:30 UTC (rev 89483)
@@ -338,12 +338,18 @@
def start_websocket_server(self):
pass
+ def acquire_http_lock(self):
+ pass
+
def stop_http_server(self):
pass
def stop_websocket_server(self):
pass
+ def release_http_lock(self):
+ pass
+
def path_to_test_expectations_file(self):
return self._expectations_path
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes