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

Unified Diff: tools/bots/pkg.py

Issue 1399243006: Increase timeout for analysis_server tests in debug mode. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 | « tools/bots/bot.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/pkg.py
diff --git a/tools/bots/pkg.py b/tools/bots/pkg.py
index b3e22a7ea7c291548754453f7966971c5609c0e1..7dad67378d87478365d46255c0896c5563f87eb2 100644
--- a/tools/bots/pkg.py
+++ b/tools/bots/pkg.py
@@ -44,7 +44,8 @@ def PkgSteps(build_info):
common_args.append('--builder-tag=%s' % build_info.builder_tag)
# There are a number of big/integration tests in pkg, run with bigger timeout
- common_args.append('--timeout=120')
+ timeout = 300 if build_info.mode == 'debug' else 120
+ common_args.append('--timeout=%s' % timeout)
# We have some unreproducible vm crashes on these bots
common_args.append('--copy-coredumps')
@@ -53,7 +54,7 @@ def PkgSteps(build_info):
if build_info.system == 'windows':
common_args.append('-j1')
- bot.RunTest('pkg ', build_info,
+ bot.RunTest('pkg', build_info,
common_args + ['pkg', 'docs'],
swallow_error=True)
« no previous file with comments | « tools/bots/bot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698