Title: [101973] trunk/Tools
- Revision
- 101973
- Author
- [email protected]
- Date
- 2011-12-04 22:52:20 -0800 (Sun, 04 Dec 2011)
Log Message
After success with Mac, Win and Gtk, turning on parallel testing
by default for all platforms (except Qt).
We'll add more platforms to the blacklist if we see problems.
Unreviewed.
* Scripts/run-webkit-tests:
(platformIsReadyForParallelTesting):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (101972 => 101973)
--- trunk/Tools/ChangeLog 2011-12-05 05:44:02 UTC (rev 101972)
+++ trunk/Tools/ChangeLog 2011-12-05 06:52:20 UTC (rev 101973)
@@ -1,3 +1,15 @@
+2011-12-04 Eric Seidel <[email protected]>
+
+ After success with Mac, Win and Gtk, turning on parallel testing
+ by default for all platforms (except Qt).
+
+ We'll add more platforms to the blacklist if we see problems.
+
+ Unreviewed.
+
+ * Scripts/run-webkit-tests:
+ (platformIsReadyForParallelTesting):
+
2011-12-04 Sam Weinig <[email protected]>
Add tests for RetainPtr::adoptNS/adoptCF
Modified: trunk/Tools/Scripts/run-webkit-tests (101972 => 101973)
--- trunk/Tools/Scripts/run-webkit-tests 2011-12-05 05:44:02 UTC (rev 101972)
+++ trunk/Tools/Scripts/run-webkit-tests 2011-12-05 06:52:20 UTC (rev 101973)
@@ -73,11 +73,10 @@
# To reduce the failure burden during the transition individual
# 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 whitelist, e.g.:
- # return isGtk() or isQt();
- # This will likely require skipping tests or marking tests as flaky in test_expectations.txt
- return isAppleMacWebKit() or isGtk() or isAppleWinWebKit();
+ # 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();
}
my $harnessName = "old-run-webkit-tests";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes