diff mx/commands.py @ 4185:4af146831ed6

Added message showing the number of changesets being checked.
author Doug Simon <doug.simon@oracle.com>
date Tue, 03 Jan 2012 12:56:55 +0100
parents fa6b78681c54
children ac5c2bdfcca2
line wrap: on
line diff
--- 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...'))