Title: [102030] trunk/Tools
Revision
102030
Author
[email protected]
Date
2011-12-05 12:47:59 -0800 (Mon, 05 Dec 2011)

Log Message

run-webkit-tests: limit --child-processes properly on apple mac
https://bugs.webkit.org/show_bug.cgi?id=73856

Reviewed by Adam Roben.

Fix typos in r102013 so that we correctly pass --child-processes=1 on
the apple mac bots temporarily.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (102029 => 102030)


--- trunk/Tools/ChangeLog	2011-12-05 20:37:21 UTC (rev 102029)
+++ trunk/Tools/ChangeLog	2011-12-05 20:47:59 UTC (rev 102030)
@@ -1,3 +1,16 @@
+2011-12-05  Dirk Pranke  <[email protected]>
+
+        run-webkit-tests: limit --child-processes properly on apple mac
+        https://bugs.webkit.org/show_bug.cgi?id=73856
+
+        Reviewed by Adam Roben.
+
+        Fix typos in r102013 so that we correctly pass --child-processes=1 on
+        the apple mac bots temporarily.
+
+        * Scripts/run-webkit-tests:
+        (platformIsReadyForParallelTesting):
+
 2011-12-05  Ryosuke Niwa  <[email protected]>
 
         Temporarily set --child-process=1 on Mac because 20+ tests are timing out

Modified: trunk/Tools/Scripts/run-webkit-tests (102029 => 102030)


--- trunk/Tools/Scripts/run-webkit-tests	2011-12-05 20:37:21 UTC (rev 102029)
+++ trunk/Tools/Scripts/run-webkit-tests	2011-12-05 20:47:59 UTC (rev 102030)
@@ -76,7 +76,7 @@
     # We believe all platforms are ready for default parallel testing except
     # Qt, as Qt runs more than one build-slave per-server.
     # Ossy has asked me to blacklist Qt for now.
-    return !isQt() and !isMac();
+    return !isQt() && !isAppleMacWebKit();
 }
 
 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