comparison mx/mx_graal.py @ 14918:31a9c79399c8

disabled current Checkstyle configurations (until Checkstyle supports Java8)
author Doug Simon <doug.simon@oracle.com>
date Tue, 01 Apr 2014 18:51:14 +0200
parents b7afc71535d3
children 5c7718ae8c86
comparison
equal deleted inserted replaced
14917:3e06a56ab0e6 14918:31a9c79399c8
1708 failures = {} 1708 failures = {}
1709 for p in mx.projects(): 1709 for p in mx.projects():
1710 if p.native: 1710 if p.native:
1711 continue 1711 continue
1712 1712
1713 csConfig = join(mx.project(p.checkstyleProj).dir, '.checkstyle_checks.xml') 1713 csConfig = join(mx.project(p.checkstyleProj).dir, '.checkstyle_checks.xml.disabled')
1714 dom = xml.dom.minidom.parse(csConfig) 1714 dom = xml.dom.minidom.parse(csConfig)
1715 for module in dom.getElementsByTagName('module'): 1715 for module in dom.getElementsByTagName('module'):
1716 if module.getAttribute('name') == 'RegexpHeader': 1716 if module.getAttribute('name') == 'RegexpHeader':
1717 for prop in module.getElementsByTagName('property'): 1717 for prop in module.getElementsByTagName('property'):
1718 if prop.getAttribute('name') == 'header': 1718 if prop.getAttribute('name') == 'header':