Tests: Disable system assertions for now.
We have had lots of test failures due to Groovy scripts making an assertion trip in `sun.reflect.generics.reflectiveObjects.WildcardTypeImpl.getLowerBoundASTs`. See https://issues.apache.org/jira/browse/GROOVY-7528.
This commit is contained in:
parent
3a1da8dfab
commit
b24779cc29
7
pom.xml
7
pom.xml
|
@ -587,7 +587,12 @@
|
|||
<jvmOutputAction>warn</jvmOutputAction>
|
||||
<leaveTemporary>true</leaveTemporary>
|
||||
<parallelism>${tests.jvms}</parallelism>
|
||||
<assertions enableSystemAssertions="true">
|
||||
<!-- System assertions (-esa) are disabled for now because of what looks like a
|
||||
JDK bug triggered by Groovy on JDK7. We should look at re-enabling system
|
||||
assertions when we upgrade to a new version of Groovy (currently 2.4.4) or
|
||||
require JDK8. See https://issues.apache.org/jira/browse/GROOVY-7528.
|
||||
-->
|
||||
<assertions enableSystemAssertions="false">
|
||||
<enable/>
|
||||
<disable package="${tests.assertion.disabled}"/>
|
||||
<!-- pass org.elasticsearch to run without assertions -->
|
||||
|
|
Loading…
Reference in New Issue