Title: [123681] trunk/Tools
- Revision
- 123681
- Author
- [email protected]
- Date
- 2012-07-25 17:05:13 -0700 (Wed, 25 Jul 2012)
Log Message
[Chromium] Fix infinite loop issue for chromium android layout test
https://bugs.webkit.org/show_bug.cgi?id=92197
Patch by Wei James <[email protected]> on 2012-07-25
Reviewed by Adam Barth.
The change brought in by r123530 will cause infinite loop when running
Chromium Android Layout Test.
Revert the change for this line only.
* Scripts/webkitpy/layout_tests/port/chromium_android.py:
(ChromiumAndroidPort._build_path):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (123680 => 123681)
--- trunk/Tools/ChangeLog 2012-07-25 23:48:02 UTC (rev 123680)
+++ trunk/Tools/ChangeLog 2012-07-26 00:05:13 UTC (rev 123681)
@@ -1,3 +1,17 @@
+2012-07-25 Wei James <[email protected]>
+
+ [Chromium] Fix infinite loop issue for chromium android layout test
+ https://bugs.webkit.org/show_bug.cgi?id=92197
+
+ Reviewed by Adam Barth.
+
+ The change brought in by r123530 will cause infinite loop when running
+ Chromium Android Layout Test.
+ Revert the change for this line only.
+
+ * Scripts/webkitpy/layout_tests/port/chromium_android.py:
+ (ChromiumAndroidPort._build_path):
+
2012-07-25 Adam Barth <[email protected]>
Jochen is our a newest reviewer!
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py (123680 => 123681)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py 2012-07-25 23:48:02 UTC (rev 123680)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py 2012-07-26 00:05:13 UTC (rev 123681)
@@ -280,7 +280,7 @@
# Overridden private functions.
def _build_path(self, *comps):
- self._build_path(None, *comps)
+ return self._host_port._build_path(*comps)
def _build_path_with_configuration(self, configuration, *comps):
return self._host_port._build_path_with_configuration(configuration, *comps)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes