comparison mx/commands.py @ 8223:b9eb0d939e60

Add bootstrap with register pressure to gate tests.
author Roland Schatz <roland.schatz@oracle.com>
date Tue, 12 Mar 2013 15:07:20 +0100
parents 74896b25297a
children 2237260c6fdb
comparison
equal deleted inserted replaced
8222:7a81fbcd67bb 8223:b9eb0d939e60
816 t = Task('BootstrapWithSystemAssertions:fastdebug') 816 t = Task('BootstrapWithSystemAssertions:fastdebug')
817 vm(['-esa', '-version']) 817 vm(['-esa', '-version'])
818 tasks.append(t.stop()) 818 tasks.append(t.stop())
819 819
820 _vmbuild = 'product' 820 _vmbuild = 'product'
821 t = Task('BootstrapWithRegisterPressure:product')
822 vm(['-G:RegisterPressure=rbx,r11,r14,xmm3,xmm11,xmm14', '-esa', '-version'])
823 tasks.append(t.stop())
824
821 originalVm = _vm 825 originalVm = _vm
822 _vm = 'server' # hosted mode 826 _vm = 'server' # hosted mode
823 t = Task('UnitTests:hosted-product') 827 t = Task('UnitTests:hosted-product')
824 unittest([]) 828 unittest([])
825 tasks.append(t.stop()) 829 tasks.append(t.stop())