diff 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
line wrap: on
line diff
--- 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'])