# HG changeset patch # User Josef Eisl # Date 1436174738 -7200 # Node ID 102c41a0516cfd02ba0b26fc92c17ce7efda2d8b # Parent 32434ca987d7bfd7e5e0836f8844ce5a38cbc412 mx: run NonSSA unittests and bootstrap in the gate. diff -r 32434ca987d7 -r 102c41a0516c mx.graal/mx_graal.py --- a/mx.graal/mx_graal.py Mon Jul 06 00:25:01 2015 +0200 +++ b/mx.graal/mx_graal.py Mon Jul 06 11:25:38 2015 +0200 @@ -1334,10 +1334,10 @@ with Task('UnitTests:hosted-product', tasks) as t: if t: unittest(['--enable-timing', '--verbose', '--fail-fast']) - # Run unit tests on server-hosted-jvmci with -G:+SSA_LIR + # Run unit tests on server-hosted-jvmci with -G:-SSA_LIR with VM('server', 'product'): - with Task('UnitTestsSSA:hosted-product', tasks) as t: - if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+SSA_LIR']) + with Task('UnitTestsNonSSA:hosted-product', tasks) as t: + if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:-SSA_LIR']) # Run ctw against rt.jar on server-hosted-jvmci with VM('server', 'product'): with Task('CTW:hosted-product', tasks) as t: @@ -1382,10 +1382,10 @@ vm(['-XX:-TieredCompilation', '-G:RegisterPressure=' + registers, '-esa', '-version']) with VM('jvmci', 'product'): - with Task('BootstrapSSAWithRegisterPressure:product', tasks) as t: + with Task('BootstrapNonSSAWithRegisterPressure:product', tasks) as t: if t: registers = 'o0,o1,o2,o3,f8,f9,d32,d34' if platform.processor() == 'sparc' else 'rbx,r11,r10,r14,xmm3,xmm11,xmm14' - vm(['-XX:-TieredCompilation', '-G:+SSA_LIR', '-G:RegisterPressure=' + registers, '-esa', '-version']) + vm(['-XX:-TieredCompilation', '-G:-SSA_LIR', '-G:RegisterPressure=' + registers, '-esa', '-version']) with VM('jvmci', 'product'): with Task('BootstrapWithImmutableCode:product', tasks) as t: