Skip to content

Commit 4dbd2d7

Browse files
committed
cold start test needs to wait for GROOVY-11935
1 parent 1949591 commit 4dbd2d7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

subprojects/performance/src/jmh/groovy/org/apache/groovy/bench/StaticMethodCallIndyColdBench.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ public int staticSum_java() {
8989
return javaSum(n);
9090
}
9191

92+
/* remove comment when GROOVY-11935 lands
9293
@Benchmark
9394
public int staticSum_groovy() {
9495
return StaticMethodCallIndy.staticSum(n);
@@ -103,6 +104,7 @@ public int staticSum_groovyCS() {
103104
public int instanceSum_groovy() {
104105
return new StaticMethodCallIndy().instanceSum(n);
105106
}
107+
*/
106108

107109
private static int javaSum(int n) {
108110
int s = 0;

0 commit comments

Comments
 (0)