Changeset 101973 in webkit
- Timestamp:
- Dec 4, 2011, 10:52:20 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-webkit-tests (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r101965 r101973 1 2011-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 1 13 2011-12-04 Sam Weinig <sam@webkit.org> 2 14 -
trunk/Tools/Scripts/run-webkit-tests
r101880 r101973 74 74 # platforms can opt-in to parallel test execution by default. 75 75 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(); 81 80 } 82 81
Note:
See TracChangeset
for help on using the changeset viewer.