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

Unified Diff: tools/bots/dart2js_dump_info.py

Issue 502403002: Make dart2js dump info bot follow the normal test output format for buildbot (Closed) Base URL: http://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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/dart2js_dump_info.py
===================================================================
--- tools/bots/dart2js_dump_info.py (revision 39546)
+++ tools/bots/dart2js_dump_info.py (working copy)
@@ -41,9 +41,17 @@
with utils.TempDir() as temp_dir:
normal_compilations = os.path.join(temp_dir, 'normal')
dump_compilations = os.path.join(temp_dir, 'dump')
- normal_compilation_command = [sys.executable, './tools/test.py',
- '--mode=' + build_info.mode,
- '-cdart2js', '-rnone'] + tests
+ normal_compilation_command = [sys.executable,
+ './tools/test.py',
+ '--mode=%s' % build_info.mode,
+ '-cdart2js',
+ '-rnone',
+ '--time',
+ '--use-sdk',
+ '--report',
+ '--progress=buildbot',
+ '-v'
+ ] + tests
with bot.BuildStep('Compiling without dump info'):
Run(normal_compilation_command)
pass
« 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