# HG changeset patch # User Tom Rodriguez # Date 1427309293 25200 # Node ID 4d119424b4ce0bfbfdc45b7c717c2b142c09ea1a # Parent c5c8193325fadc9bba701b8b65a8d285ee966b6f Add CTW of rt.jar to gate diff -r c5c8193325fa -r 4d119424b4ce mx/mx_graal.py --- a/mx/mx_graal.py Wed Mar 25 11:48:07 2015 -0700 +++ b/mx/mx_graal.py Wed Mar 25 11:48:13 2015 -0700 @@ -1504,6 +1504,11 @@ with Task('UnitTests:hosted-product', tasks) as t: if t: unittest(['--enable-timing', '--verbose', '--fail-fast']) + # Run ctw against rt.jar on server-hosted-graal + with VM('server', 'product'): + with Task('CTW:hosted-product', tasks) as t: + if t: ctw(['--ctwopts', '-Inline +ExitVMOnException', '-esa', '-G:+CompileTheWorldMultiThreaded', '-G:-CompileTheWorldVerbose']) + # Build the other VM flavors with Task('BuildHotSpotGraalOthers: fastdebug,product', tasks) as t: if t: buildvms(['--vms', 'graal,server', '--builds', 'fastdebug,product'])