# HG changeset patch # User Roland Schatz # Date 1438096016 -7200 # Node ID f76cc63cf1d96f568712eb027e1918bd617c00eb # Parent c68c5babdecd34d0ac38b7499f85d73b6f2b53d6 Re-add accidentially dropped -Xcomp gate test. diff -r c68c5babdecd -r f76cc63cf1d9 mx.graal/mx_graal.py --- 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', []),