comparison mx/mx_graal.py @ 21960:f15b1d92e34b

re-enabled checking that jvmci.make is in sync with suite*.py
author Doug Simon <doug.simon@oracle.com>
date Sat, 13 Jun 2015 01:01:21 +0200
parents ab37091f0980
children 647459c6013a
comparison
equal deleted inserted replaced
21959:3adf20a59771 21960:f15b1d92e34b
1689 mx._opts.strict_compliance = True 1689 mx._opts.strict_compliance = True
1690 1690
1691 tasks = [] 1691 tasks = []
1692 total = Task('Gate') 1692 total = Task('Gate')
1693 try: 1693 try:
1694 with Task('Check jvmci.make in sync with suite.py', tasks) as t:
1695 if t:
1696 jvmciMake = join('make', 'jvmci.make')
1697 if mx_graal_makefile.build_makefile(['-o', jvmciMake]) != 0:
1698 t.abort('Rerun "mx makefile -o ' + jvmciMake + ' and check-in the modified ' + jvmciMake)
1699
1694 with Task('Pylint', tasks) as t: 1700 with Task('Pylint', tasks) as t:
1695 if t: mx.pylint([]) 1701 if t: mx.pylint([])
1696
1697 # with Task('Check jvmci.make in sync with suite.py', tasks) as t:
1698 # if t:
1699 # jvmciMake = join('make', 'jvmci.make')
1700 # if mx_graal_makefile.build_makefile(['-o', jvmciMake]) != 0:
1701 # t.abort('Rerun "mx makefile -o ' + jvmciMake + ' and check-in the modified ' + jvmciMake)
1702 1702
1703 def _clean(name='Clean'): 1703 def _clean(name='Clean'):
1704 with Task(name, tasks) as t: 1704 with Task(name, tasks) as t:
1705 if t: 1705 if t:
1706 cleanArgs = [] 1706 cleanArgs = []