changeset 22373:a30c3bf521a5

Disable -G:+TraceRA gate temproarily on sparc
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Tue, 28 Jul 2015 12:23:05 +0200
parents b8f0a82b27cb
children 018641237d98
files mx.graal/mx_graal.py
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/mx.graal/mx_graal.py	Tue Jul 28 12:22:39 2015 +0200
+++ b/mx.graal/mx_graal.py	Tue Jul 28 12:23:05 2015 +0200
@@ -1340,9 +1340,10 @@
         with Task('UnitTestsNonSSA:hosted-product', tasks) as t:
             if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:-SSA_LIR'])
     # Run unit tests on server-hosted-jvmci with TraceRA
-    with VM('server', 'product'):
-        with Task('UnitTestsTraceRA:hosted-product', tasks) as t:
-            if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+TraceRA'])
+    if platform.processor() != 'sparc':
+        with VM('server', 'product'):
+            with Task('UnitTestsTraceRA:hosted-product', tasks) as t:
+                if t: unittest(['--enable-timing', '--verbose', '--fail-fast', '-G:+TraceRA'])
     # Run ctw against rt.jar on server-hosted-jvmci
     with VM('server', 'product'):
         with Task('CTW:hosted-product', tasks) as t: