This is an automated email from the ASF dual-hosted git repository.

paulk-asert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 443686e9e3 minor refactor: allow jmh format to be parameterised
443686e9e3 is described below

commit 443686e9e3978d85290f814a74a5c58d04ee9169
Author: Paul King <[email protected]>
AuthorDate: Wed May 6 09:37:00 2026 +1000

    minor refactor: allow jmh format to be parameterised
---
 build-logic/src/main/groovy/org.apache.groovy-performance.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build-logic/src/main/groovy/org.apache.groovy-performance.gradle 
b/build-logic/src/main/groovy/org.apache.groovy-performance.gradle
index f8555a2a9d..8cbe566d33 100644
--- a/build-logic/src/main/groovy/org.apache.groovy-performance.gradle
+++ b/build-logic/src/main/groovy/org.apache.groovy-performance.gradle
@@ -57,6 +57,9 @@ jmh {
         includes = ['.*' + project.benchInclude + '.*']
     }
     includeTests = true
+    if (project.hasProperty('jmhResultFormat')) {
+        resultFormat = project.jmhResultFormat
+    }
 }
 
 jmhJar {

Reply via email to