File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java-benchmarks/mx.java-benchmarks Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1850,16 +1850,16 @@ def renaissanceIterations(self):
18501850 del benchmarks ["naive-bayes" ]
18511851 del benchmarks ["page-rank" ]
18521852
1853- if mx .get_arch () != "amd64" or mx .get_jdk ().javaCompliance >= '11' :
1853+ if mx .get_arch () != "amd64" or mx .get_jdk ().javaCompliance > '11' :
18541854 # GR-33879
18551855 # JNA libraries needed are currently limited to amd64: renaissance-benchmarks/renaissance #153
18561856 del benchmarks ["db-shootout" ]
18571857
18581858 if self .version () in ["0.9.0" , "0.10.0" , "0.11.0" ]:
1859- if mx .get_jdk ().javaCompliance >= '11' :
1859+ if mx .get_jdk ().javaCompliance > '11' :
18601860 del benchmarks ["neo4j-analytics" ]
18611861 else :
1862- if mx .get_jdk ().javaCompliance < '11' or mx .get_jdk ().javaCompliance >= '15' :
1862+ if mx .get_jdk ().javaCompliance < '11' or mx .get_jdk ().javaCompliance > '15' :
18631863 del benchmarks ["neo4j-analytics" ]
18641864 return benchmarks
18651865
You can’t perform that action at this time.
0 commit comments