comparison mx/commands.py @ 4235:23f41c48b19b

Re-enabled Java cleaning in gate.
author Doug Simon <doug.simon@oracle.com>
date Fri, 06 Jan 2012 14:22:57 +0100
parents 057620486c90
children e0d09e05aa9b
comparison
equal deleted inserted replaced
4234:057620486c90 4235:23f41c48b19b
543 mx.abort(codeOrMessage) 543 mx.abort(codeOrMessage)
544 544
545 total = Task('Gate') 545 total = Task('Gate')
546 try: 546 try:
547 547
548 #t = Task('CleanJava') 548 t = Task('CleanJava')
549 #clean(['--no-native']) 549 clean(['--no-native'])
550 #t.stop() 550 t.stop()
551 551
552 t = Task('Checkstyle') 552 t = Task('Checkstyle')
553 if mx.checkstyle([]) != 0: 553 if mx.checkstyle([]) != 0:
554 t.abort('Checkstyle warnings were found') 554 t.abort('Checkstyle warnings were found')
555 t.stop() 555 t.stop()