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

Unified Diff: dart/runtime/tools/make_version.py

Issue 11189120: Add more debug information for http://dartbug.com/6005. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/tools/make_version.py
diff --git a/dart/runtime/tools/make_version.py b/dart/runtime/tools/make_version.py
index f348a1eda72ac15b96c4f399e002ad04ca00e8d1..952e6c842e8bbb47467520000cc2a5250ba20953 100644
--- a/dart/runtime/tools/make_version.py
+++ b/dart/runtime/tools/make_version.py
@@ -117,4 +117,9 @@ def main(args):
return -1
if __name__ == '__main__':
- sys.exit(main(sys.argv))
+ sys.stderr.write('starting make_version.py\n')
+ sys.stderr.flush()
+ exit_code = main(sys.argv)
+ sys.stderr.write('exiting make_version.py (exit code: %s)\n' % exit_code)
+ sys.stderr.flush()
+ sys.exit(exit_code)
« 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