You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2020/08/23 23:02:02 UTC

[lucene-solr] branch master updated: LUCENE-9474: Add back tests.haltonfailure for jenkins compatibility (use boolean as default) - type fix

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

uschindler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 42d07d8  LUCENE-9474: Add back tests.haltonfailure for jenkins compatibility (use boolean as default) - type fix
42d07d8 is described below

commit 42d07d878e474b692330ac86da09b0962d7798d6
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Mon Aug 24 01:01:38 2020 +0200

    LUCENE-9474: Add back tests.haltonfailure for jenkins compatibility (use boolean as default) - type fix
---
 gradle/testing/defaults-tests.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/testing/defaults-tests.gradle b/gradle/testing/defaults-tests.gradle
index 66e117f..10f7881 100644
--- a/gradle/testing/defaults-tests.gradle
+++ b/gradle/testing/defaults-tests.gradle
@@ -67,7 +67,7 @@ allprojects {
       minHeapSize = propertyOrDefault("tests.minheapsize", "256m")
       maxHeapSize = propertyOrDefault("tests.heapsize", "512m")
       
-      ignoreFailures = (propertyOrDefault("tests.haltonfailure", "true").toBoolean() == false)
+      ignoreFailures = (propertyOrDefault("tests.haltonfailure", true).toBoolean() == false)
 
       jvmArgs Commandline.translateCommandline(propertyOrDefault("tests.jvmargs", System.getenv('TEST_JVM_ARGS') ?: "-XX:TieredStopAtLevel=1"))