# HG changeset patch # User Doug Simon # Date 1325591815 -3600 # Node ID 4af146831ed60acdce03beded42fa4d268cafca2 # Parent fa6b78681c540f90a03626e9e0ded9730d6734cd Added message showing the number of changesets being checked. diff -r fa6b78681c54 -r 4af146831ed6 mx/commands.py --- a/mx/commands.py Tue Jan 03 12:37:31 2012 +0100 +++ b/mx/commands.py Tue Jan 03 12:56:55 2012 +0100 @@ -558,7 +558,9 @@ revTip = int(subprocess.check_output(['hg', 'tip', '--template', "'{rev}'"]).strip("'")) revLast = int(subprocess.check_output(['hg', 'log', '-r', hgNode, '--template', "'{rev}'"]).strip("'")) changesetCount = revTip - revLast + 1 + mx.log(time.strftime('Checking ' + str(changesetCount) + ' changesets...')) copyrightcheck(['-last=' + str(changesetCount), '-reporterrors=true', '-continueonerror']) + raise SystemExit('forced exit') # 6. Bootstrap with system assertions enabled mx.log(time.strftime('%d %b %Y %H:%M:%S - Bootstrap with -esa...'))