changeset 22330:f76cc63cf1d9

Re-add accidentially dropped -Xcomp gate test.
author Roland Schatz <roland.schatz@oracle.com>
date Tue, 28 Jul 2015 17:06:56 +0200
parents c68c5babdecd
children 992575891f42
files mx.graal/mx_graal.py
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx.graal/mx_graal.py	Tue Jul 28 11:42:21 2015 +0200
+++ b/mx.graal/mx_graal.py	Tue Jul 28 17:06:56 2015 +0200
@@ -272,6 +272,11 @@
         with Task('DaCapo_pmd:BatchMode:product', tasks) as t:
             if t: dacapo(['-Xbatch', 'pmd'])
 
+    # ensure -Xcomp still works
+    with VM('jvmci', 'product'):
+        with Task('XCompMode:product', tasks) as t:
+            if t: vm(['-Xcomp', '-version'])
+
 
 graal_unit_test_runs = [
     UnitTestRun('UnitTests', []),