Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: tools/bots/pub.py

Issue 509903002: Run all pub tests on Windows with -j1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/pkg.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/pub.py
diff --git a/tools/bots/pub.py b/tools/bots/pub.py
index dc56e03b9fc1d8d4d25095b5c0fb55edaf53b631..640bd0b0ed6987aa6c2341ae1069c95fbbfdb101 100755
--- a/tools/bots/pub.py
+++ b/tools/bots/pub.py
@@ -50,6 +50,8 @@ def PubSteps(build_info):
# There are a number of big/integration tests in pkg, run with bigger timeout
common_args.append('--timeout=120')
+ if build_info.system == 'windows':
+ common_args.append('-j1')
opt_threshold = '--vm-options=--optimization-counter-threshold=5'
if build_info.mode == 'release':
bot.RunTest('pub and pkg ', build_info,
@@ -80,8 +82,6 @@ def PubSteps(build_info):
# Experiment with not running concurrent calls.
public_args = (common_args +
['--append_logs', '--use-public-packages', 'pkgbuild'])
- if build_info.system == 'windows':
- public_args.append('-j1')
bot.RunTest('pkgbuild_public_pkgs', pkgbuild_build_info, public_args)
if __name__ == '__main__':
« no previous file with comments | « pkg/pkg.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698