mirror of https://github.com/apache/lucene.git
LUCENE-9474: Add back tests.haltonfailure for jenkins compatibility (use boolean as default) - type fix
This commit is contained in:
parent
863d544378
commit
42d07d878e
|
@ -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"))
|
||||
|
||||
|
|
Loading…
Reference in New Issue