comparison mx/mx_graal.py @ 14123:dc41eab09fe8

gate: add non-tiered bootstrap
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 10 Mar 2014 16:20:45 +0100
parents be7ebdf41bea
children f14fb79ab265
comparison
equal deleted inserted replaced
14122:2a7d7da912e1 14123:dc41eab09fe8
973 tasks.append(t.stop()) 973 tasks.append(t.stop())
974 974
975 with VM('graal', 'fastdebug'): 975 with VM('graal', 'fastdebug'):
976 t = Task('BootstrapWithSystemAssertions:fastdebug') 976 t = Task('BootstrapWithSystemAssertions:fastdebug')
977 vm(['-esa', '-version']) 977 vm(['-esa', '-version'])
978 tasks.append(t.stop())
979
980 with VM('graal', 'fastdebug'):
981 t = Task('NoTieredBootstrapWithSystemAssertions:fastdebug')
982 vm(['-esa', '-XX:-TieredCompilation', '-version'])
978 tasks.append(t.stop()) 983 tasks.append(t.stop())
979 984
980 with VM('graal', 'product'): 985 with VM('graal', 'product'):
981 t = Task('BootstrapWithGCVerification:product') 986 t = Task('BootstrapWithGCVerification:product')
982 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write 987 out = mx.DuplicateSuppressingStream(['VerifyAfterGC:', 'VerifyBeforeGC:']).write