changeset 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 c5c8193325fa
children 39c0ccfcd070 bbf53b35292e
files mx/mx_graal.py
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
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'])