comparison mx/commands.py @ 10010:893bc1dbb58c

gate: add bootstrap with aot configuration to gate check
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 12 Jun 2013 16:04:42 +0200
parents 2194b25ff111
children 0d378ea2b822
comparison
equal deleted inserted replaced
10009:b5c87b5c6e9c 10010:893bc1dbb58c
1042 _vmbuild = 'product' 1042 _vmbuild = 'product'
1043 t = Task('BootstrapWithRegisterPressure:product') 1043 t = Task('BootstrapWithRegisterPressure:product')
1044 vm(['-G:RegisterPressure=rbx,r11,r14,xmm3,xmm11,xmm14', '-esa', '-version']) 1044 vm(['-G:RegisterPressure=rbx,r11,r14,xmm3,xmm11,xmm14', '-esa', '-version'])
1045 tasks.append(t.stop()) 1045 tasks.append(t.stop())
1046 1046
1047 _vmbuild = 'product'
1048 t = Task('BootstrapWithAOTConfiguration:product')
1049 vm(['-G:+AOTCompilation', '-esa', '-version'])
1050 tasks.append(t.stop())
1051
1047 originalVm = _vm 1052 originalVm = _vm
1048 _vm = 'server' # hosted mode 1053 _vm = 'server' # hosted mode
1049 t = Task('UnitTests:hosted-product') 1054 t = Task('UnitTests:hosted-product')
1050 unittest([]) 1055 unittest([])
1051 tasks.append(t.stop()) 1056 tasks.append(t.stop())