changeset 22655:8ed4037e8286

Ignore verification jvmci.make on SPARC gate
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Fri, 02 Oct 2015 08:16:04 -0700
parents a215c16882e0
children d634e615b00d
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Thu Oct 01 11:28:01 2015 +0200
+++ b/mx.jvmci/mx_jvmci.py	Fri Oct 02 08:16:04 2015 -0700
@@ -1193,11 +1193,12 @@
 
 
 def _jvmci_gate_runner(args, tasks):
-    with Task('Check jvmci.make in sync with suite.py', tasks) as t:
-        if t:
-            jvmciMake = join(_suite.dir, 'make', 'jvmci.make')
-            if mx_jvmci_makefile.build_makefile(['-o', jvmciMake]) != 0:
-                t.abort('Rerun "mx makefile -o ' + jvmciMake + ' and check-in the modified ' + jvmciMake)
+    if mx.get_arch() != 'sparcv9':
+        with Task('Check jvmci.make in sync with suite.py', tasks) as t:
+            if t:
+                jvmciMake = join(_suite.dir, 'make', 'jvmci.make')
+                if mx_jvmci_makefile.build_makefile(['-o', jvmciMake]) != 0:
+                    t.abort('Rerun "mx makefile -o ' + jvmciMake + ' and check-in the modified ' + jvmciMake)
 
     # Build server-hosted-jvmci now so we can run the unit tests
     with Task('BuildHotSpotJVMCIHosted: product', tasks) as t: