Title: [137205] trunk/Tools
- Revision
- 137205
- Author
- dpra...@chromium.org
- Date
- 2012-12-10 14:14:33 -0800 (Mon, 10 Dec 2012)
Log Message
fix regression in test-webkitpy after r137189
https://bugs.webkit.org/show_bug.cgi?id=104589
Reviewed by Eric Seidel.
Need to specify full port names.
* Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
(MainTest.test_build_check):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (137204 => 137205)
--- trunk/Tools/ChangeLog 2012-12-10 22:13:06 UTC (rev 137204)
+++ trunk/Tools/ChangeLog 2012-12-10 22:14:33 UTC (rev 137205)
@@ -1,3 +1,15 @@
+2012-12-10 Dirk Pranke <dpra...@chromium.org>
+
+ fix regression in test-webkitpy after r137189
+ https://bugs.webkit.org/show_bug.cgi?id=104589
+
+ Reviewed by Eric Seidel.
+
+ Need to specify full port names.
+
+ * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
+ (MainTest.test_build_check):
+
2012-12-10 Laszlo Gombos <l.gom...@samsung.com>
[EFL] Change the minimum required EFL version to 1.6
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py (137204 => 137205)
--- trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py 2012-12-10 22:13:06 UTC (rev 137204)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py 2012-12-10 22:14:33 UTC (rev 137205)
@@ -882,9 +882,9 @@
def test_build_check(self):
# By using a port_name for a different platform than the one we're running on, the build check should always fail.
if sys.platform == 'darwin':
- port_name = 'chromium-linux'
+ port_name = 'chromium-linux-x86'
else:
- port_name = 'chromium-mac'
+ port_name = 'chromium-mac-lion'
out = StringIO.StringIO()
err = StringIO.StringIO()
self.assertEqual(run_webkit_tests.main(['--platform', port_name, 'fast/harness/results.html'], out, err), -1)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes