changeset 21965:647459c6013a

mx gate: add UnitTestsSSA task.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 08 Jun 2015 17:51:58 +0200
parents 6860c1078d92
children 4005025656ee
files mx/mx_graal.py
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Sun Jun 14 01:37:31 2015 -0700
+++ b/mx/mx_graal.py	Mon Jun 08 17:51:58 2015 +0200
@@ -1558,6 +1558,10 @@
         with Task('UnitTests:hosted-product', tasks) as t:
             if t: unittest(['--enable-timing', '--verbose', '--fail-fast'])
 
+    # Run unit tests on server-hosted-jvmci with -G:+SSA_LIR
+    with VM('server', 'product'):
+        with Task('UnitTestsSSA:hosted-product', tasks) as t:
+            if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+SSA_LIR'])
     # Run ctw against rt.jar on server-hosted-jvmci
     with VM('server', 'product'):
         with Task('CTW:hosted-product', tasks) as t: