# HG changeset patch # User Stefan Anzinger # Date 1438078985 -7200 # Node ID a30c3bf521a52c3e0a46a037e728f71cb7b17d6a # Parent b8f0a82b27cb0920579cdd9000e8b159255d7d19 Disable -G:+TraceRA gate temproarily on sparc diff -r b8f0a82b27cb -r a30c3bf521a5 mx.graal/mx_graal.py --- 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: