⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101973 in webkit


Ignore:
Timestamp:
Dec 4, 2011, 10:52:20 PM (15 years ago)
Author:
eric@webkit.org
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r101965 r101973  
     12011-12-04  Eric Seidel  <eric@webkit.org>
     2
     3        After success with Mac, Win and Gtk, turning on parallel testing
     4        by default for all platforms (except Qt).
     5
     6        We'll add more platforms to the blacklist if we see problems.
     7
     8        Unreviewed.
     9
     10        * Scripts/run-webkit-tests:
     11        (platformIsReadyForParallelTesting):
     12
    1132011-12-04  Sam Weinig  <sam@webkit.org>
    214
  • trunk/Tools/Scripts/run-webkit-tests

    r101880 r101973  
    7474    # platforms can opt-in to parallel test execution by default.
    7575
    76     # Platforms interested in dog-fooding faster test runs on their bots
    77     # should add themselves to this whitelist, e.g.:
    78     # return isGtk() or isQt();
    79     # This will likely require skipping tests or marking tests as flaky in test_expectations.txt
    80     return isAppleMacWebKit() or isGtk() or isAppleWinWebKit();
     76    # We believe all platforms are ready for default parallel testing except
     77    # Qt, as Qt runs more than one build-slave per-server.
     78    # Ossy has asked me to blacklist Qt for now.
     79    return !isQt();
    8180}
    8281
Note: See TracChangeset for help on using the changeset viewer.