mirror of https://github.com/apache/poi.git
don't run integration tests in Java 8 (they hang on https://ci-builds.apache.org/)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1909749 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
338e97f87c
commit
f57e10eb0e
|
@ -139,10 +139,16 @@ artifacts {
|
||||||
test {
|
test {
|
||||||
// exclude these from the normal test-run
|
// exclude these from the normal test-run
|
||||||
exclude '**/*FileHandler.class'
|
exclude '**/*FileHandler.class'
|
||||||
|
if (jdkVersion == 8) {
|
||||||
|
exclude '**/*.class'
|
||||||
|
}
|
||||||
|
|
||||||
dependsOn { testJar }
|
dependsOn { testJar }
|
||||||
|
|
||||||
systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true'
|
systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true'
|
||||||
|
if (jdkVersion == 8) {
|
||||||
|
systemProperties['sun.java2d.renderer'] = 'sun.java2d.marlin.MarlinRenderingEngine'
|
||||||
|
}
|
||||||
|
|
||||||
doFirst {
|
doFirst {
|
||||||
jvmArgs += [
|
jvmArgs += [
|
||||||
|
|
Loading…
Reference in New Issue