Modified: trunk/Tools/ChangeLog (131799 => 131800)
--- trunk/Tools/ChangeLog 2012-10-18 21:11:12 UTC (rev 131799)
+++ trunk/Tools/ChangeLog 2012-10-18 21:16:31 UTC (rev 131800)
@@ -1,5 +1,19 @@
2012-10-18 Dirk Pranke <[email protected]>
+ webkitpy: fix chromium bot configs in builders.py
+ https://bugs.webkit.org/show_bug.cgi?id=99638
+
+ Reviewed by Ojan Vafai.
+
+ Updating after the great bot-renaming and deleting a test case
+ that is no longer needed.
+
+ * Scripts/webkitpy/layout_tests/port/builders.py:
+ * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
+ (BuildCoverageExtrapolatorTest.test_extrapolate):
+
+2012-10-18 Dirk Pranke <[email protected]>
+
[chromium] Add 10.8 bot into fallback path, make work with garden-o-matic
https://bugs.webkit.org/show_bug.cgi?id=99748
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/builders.py (131799 => 131800)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/builders.py 2012-10-18 21:11:12 UTC (rev 131799)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/builders.py 2012-10-18 21:16:31 UTC (rev 131800)
@@ -38,9 +38,9 @@
_exact_matches = {
# These builders are on build.chromium.org.
"WebKit XP": {"port_name": "chromium-win-xp", "specifiers": set(["xp", "release"])},
- "WebKit Win7": {"port_name": "chromium-win-win7", "specifiers": set(["win7"])},
- "WebKit Win7 (dbg)(1)": {"port_name": "chromium-win-xp", "specifiers": set(["win", "debug"])},
- "WebKit Win7 (dbg)(2)": {"port_name": "chromium-win-xp", "specifiers": set(["win", "debug"])},
+ "WebKit Win7": {"port_name": "chromium-win-win7", "specifiers": set(["win7", "release"])},
+ "WebKit Win7 (dbg)(1)": {"port_name": "chromium-win-win7", "specifiers": set(["win7", "debug"])},
+ "WebKit Win7 (dbg)(2)": {"port_name": "chromium-win-win7", "specifiers": set(["win7", "debug"])},
"WebKit Linux": {"port_name": "chromium-linux-x86_64", "specifiers": set(["linux", "x86_64", "release"])},
"WebKit Linux 32": {"port_name": "chromium-linux-x86", "specifiers": set(["linux", "x86"])},
"WebKit Linux (dbg)": {"port_name": "chromium-linux-x86_64", "specifiers": set(["linux", "debug"])},
Modified: trunk/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py (131799 => 131800)
--- trunk/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py 2012-10-18 21:11:12 UTC (rev 131799)
+++ trunk/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py 2012-10-18 21:16:31 UTC (rev 131800)
@@ -91,9 +91,6 @@
converter = TestConfigurationConverter(port.all_test_configurations(), port.configuration_specifier_macros())
extrapolator = BuildCoverageExtrapolator(converter)
self.assertEquals(extrapolator.extrapolate_test_configurations("WebKit XP"), set([TestConfiguration(version='xp', architecture='x86', build_type='release')]))
- self.assertEquals(extrapolator.extrapolate_test_configurations("WebKit Win7"), set([
- TestConfiguration(version='win7', architecture='x86', build_type='debug'),
- TestConfiguration(version='win7', architecture='x86', build_type='release')]))
self.assertRaises(KeyError, extrapolator.extrapolate_test_configurations, "Potato")