Title: [101853] trunk/Tools
Revision
101853
Author
[email protected]
Date
2011-12-02 14:26:56 -0800 (Fri, 02 Dec 2011)

Log Message

Enable parallel testing for run-webkit-tests on Mac Lion.
I plan to move all the machines to parallel testing shortly
but we're starting with Lion.

Unreviewed.

* Scripts/run-webkit-tests:
(platformIsReadyForParallelTesting):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (101852 => 101853)


--- trunk/Tools/ChangeLog	2011-12-02 22:17:27 UTC (rev 101852)
+++ trunk/Tools/ChangeLog	2011-12-02 22:26:56 UTC (rev 101853)
@@ -1,3 +1,14 @@
+2011-12-02  Eric Seidel  <[email protected]>
+
+        Enable parallel testing for run-webkit-tests on Mac Lion.
+        I plan to move all the machines to parallel testing shortly
+        but we're starting with Lion.
+
+        Unreviewed.
+
+        * Scripts/run-webkit-tests:
+        (platformIsReadyForParallelTesting):
+
 2011-12-02  Kausalya Madhusudhanan  <[email protected]>
 
         Added helper method to identify whether the page has custom page size style.

Modified: trunk/Tools/Scripts/run-webkit-tests (101852 => 101853)


--- trunk/Tools/Scripts/run-webkit-tests	2011-12-02 22:17:27 UTC (rev 101852)
+++ trunk/Tools/Scripts/run-webkit-tests	2011-12-02 22:26:56 UTC (rev 101853)
@@ -74,10 +74,10 @@
     # platforms can opt-in to parallel test execution by default.
 
     # Platforms interested in dog-fooding faster test runs on their bots
-    # should add themselves to this blacklist, e.g.:
+    # should add themselves to this whitelist, e.g.:
     # return isGtk() or isQt();
     # This will likely require skipping tests or marking tests as flaky in test_expectations.txt
-    return 0;
+    return isAppleMacWebKit() and isLion();
 }
 
 my $harnessName = "old-run-webkit-tests";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to