comparison mx/mx_graal.py @ 20032:4d119424b4ce

Add CTW of rt.jar to gate
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 25 Mar 2015 11:48:13 -0700
parents af1e4c16b00f
children 6e5df2d60fbd
comparison
equal deleted inserted replaced
20031:c5c8193325fa 20032:4d119424b4ce
1501 1501
1502 # Run unit tests on server-hosted-graal 1502 # Run unit tests on server-hosted-graal
1503 with VM('server', 'product'): 1503 with VM('server', 'product'):
1504 with Task('UnitTests:hosted-product', tasks) as t: 1504 with Task('UnitTests:hosted-product', tasks) as t:
1505 if t: unittest(['--enable-timing', '--verbose', '--fail-fast']) 1505 if t: unittest(['--enable-timing', '--verbose', '--fail-fast'])
1506
1507 # Run ctw against rt.jar on server-hosted-graal
1508 with VM('server', 'product'):
1509 with Task('CTW:hosted-product', tasks) as t:
1510 if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-CompileTheWorldVerbose'])
1506 1511
1507 # Build the other VM flavors 1512 # Build the other VM flavors
1508 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t: 1513 with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t:
1509 if t: buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product']) 1514 if t: buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product'])
1510 1515