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

dsmiley pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 63cb289a297 build: don't report tests.jvms in reproduce lines (#3025)
63cb289a297 is described below

commit 63cb289a297ec8d61b73abb9f94c46c846581382
Author: David Smiley <dsmi...@apache.org>
AuthorDate: Mon Jan 13 16:37:57 2025 -0500

    build: don't report tests.jvms in reproduce lines (#3025)
    
    Motivated by needing to remove this from a failure reported by Crave's 96 
core machine.
    
    (cherry picked from commit ff5cff8c44408695fa62ed397ab9a915428ac371)
---
 gradle/testing/defaults-tests.gradle | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gradle/testing/defaults-tests.gradle 
b/gradle/testing/defaults-tests.gradle
index d291ca85a40..5a83e9eaf15 100644
--- a/gradle/testing/defaults-tests.gradle
+++ b/gradle/testing/defaults-tests.gradle
@@ -44,7 +44,8 @@ allprojects {
           // Test forks
           [propName: 'tests.jvms',
            value: { -> ((int) Math.max(1, 
Math.min(Runtime.runtime.availableProcessors() / 2.0, 4.0))) },
-           description: "Number of forked test JVMs"],
+           description: "Number of forked test JVMs",
+           includeInReproLine: false],
           [propName: 'tests.haltonfailure', value: true, description: "Halt 
processing on test failure."],
           // Default code cache size is 240m, but disabling C2 compiler 
shrinks it to 48m, which turns out to not be enough
           [propName: 'tests.jvmargs',
@@ -99,7 +100,7 @@ allprojects {
 
       maxParallelForks = resolvedTestOption("tests.jvms") as Integer
       if (verboseMode && maxParallelForks != 1) {
-        logger.lifecycle("tests.jvm forced to 1 in verbose mode.")
+        logger.lifecycle("tests.jvms forced to 1 in verbose mode.")
         maxParallelForks = 1
       }
 

Reply via email to