Modified: trunk/Tools/ChangeLog (97278 => 97279)
--- trunk/Tools/ChangeLog 2011-10-12 18:28:55 UTC (rev 97278)
+++ trunk/Tools/ChangeLog 2011-10-12 18:30:29 UTC (rev 97279)
@@ -1,3 +1,15 @@
+2011-10-12 Adam Barth <[email protected]>
+
+ webkitpy tests are failing on Mac bots
+ https://bugs.webkit.org/show_bug.cgi?id=69929
+
+ Reviewed by Simon Fraser.
+
+ Admit that Lion exists.
+
+ * Scripts/webkitpy/layout_tests/port/chromium.py:
+ * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
+
2011-10-12 Simon Fraser <[email protected]>
Improve output of run-api-tests to make time-outs more obvious
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py (97278 => 97279)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py 2011-10-12 18:28:55 UTC (rev 97278)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium.py 2011-10-12 18:30:29 UTC (rev 97279)
@@ -62,6 +62,7 @@
ALL_SYSTEMS = (
('leopard', 'x86'),
('snowleopard', 'x86'),
+ ('lion', 'x86'),
('xp', 'x86'),
('vista', 'x86'),
('win7', 'x86'),
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_unittest.py (97278 => 97279)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_unittest.py 2011-10-12 18:28:55 UTC (rev 97278)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_unittest.py 2011-10-12 18:30:29 UTC (rev 97279)
@@ -140,6 +140,10 @@
TestConfiguration('snowleopard', 'x86', 'release', 'gpu'),
TestConfiguration('snowleopard', 'x86', 'release', 'cpu-cg'),
TestConfiguration('snowleopard', 'x86', 'release', 'gpu-cg'),
+ TestConfiguration('lion', 'x86', 'debug', 'cpu'),
+ TestConfiguration('lion', 'x86', 'debug', 'gpu'),
+ TestConfiguration('lion', 'x86', 'release', 'cpu'),
+ TestConfiguration('lion', 'x86', 'release', 'gpu'),
TestConfiguration('xp', 'x86', 'debug', 'cpu'),
TestConfiguration('xp', 'x86', 'debug', 'gpu'),
TestConfiguration('xp', 'x86', 'release', 'cpu'),