comparison mx/mx_graal.py @ 21965:647459c6013a

mx gate: add UnitTestsSSA task.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 08 Jun 2015 17:51:58 +0200
parents f15b1d92e34b
children 290a87b718e1
comparison
equal deleted inserted replaced
21964:6860c1078d92 21965:647459c6013a
1556 # Run unit tests on server-hosted-jvmci 1556 # Run unit tests on server-hosted-jvmci
1557 with VM('server', 'product'): 1557 with VM('server', 'product'):
1558 with Task('UnitTests:hosted-product', tasks) as t: 1558 with Task('UnitTests:hosted-product', tasks) as t:
1559 if t: unittest(['--enable-timing', '--verbose', '--fail-fast']) 1559 if t: unittest(['--enable-timing', '--verbose', '--fail-fast'])
1560 1560
1561 # Run unit tests on server-hosted-jvmci with -G:+SSA_LIR
1562 with VM('server', 'product'):
1563 with Task('UnitTestsSSA:hosted-product', tasks) as t:
1564 if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+SSA_LIR'])
1561 # Run ctw against rt.jar on server-hosted-jvmci 1565 # Run ctw against rt.jar on server-hosted-jvmci
1562 with VM('server', 'product'): 1566 with VM('server', 'product'):
1563 with Task('CTW:hosted-product', tasks) as t: 1567 with Task('CTW:hosted-product', tasks) as t:
1564 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-CompileTheWorldVerbose']) 1568 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-CompileTheWorldVerbose'])
1565 1569