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

Unified Diff: dart/tools/bots/pub.py

Issue 125933002: Write testoutcomelog on pub builders + append to logfiles on later test.py runs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/bots/pub.py
diff --git a/dart/tools/bots/pub.py b/dart/tools/bots/pub.py
index d33a21e4a511de5d55c16544b8b399254fe7db05..4e0b52864090ca1d54f0469568c54f96c9314ea0 100755
--- a/dart/tools/bots/pub.py
+++ b/dart/tools/bots/pub.py
@@ -41,13 +41,16 @@ def PubSteps(build_info):
print 'Building package-root: %s' % (' '.join(args))
bot.RunProcess(args)
- bot.RunTest('pub', build_info, ['pub', 'pkg', 'dartdoc', 'docs'])
+ bot.RunTest('pub', build_info, ['--write_test_outcome_log',
+ 'pub', 'pkg', 'dartdoc', 'docs'])
pkgbuild_build_info = bot.BuildInfo('none', 'vm', 'release',
build_info.system, checked=False)
- bot.RunTest('pkgbuild_repo_pkgs', pkgbuild_build_info, ['pkgbuild'])
+ bot.RunTest('pkgbuild_repo_pkgs', pkgbuild_build_info,
+ ['--append_logs', '--write_test_outcome_log', 'pkgbuild'])
bot.RunTest('pkgbuild_public_pkgs', pkgbuild_build_info,
- ['pkgbuild', '--use-public-packages'])
+ ['--append_logs', '--write_test_outcome_log',
+ '--use-public-packages', 'pkgbuild'])
if __name__ == '__main__':
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698