Ignore OOM test for now, somehow catching Exceptions does not work when run on Gradle

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1876143 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2020-04-05 05:52:12 +00:00
parent 0174c4df27
commit af890fba13
1 changed files with 5 additions and 0 deletions

View File

@ -275,6 +275,11 @@ project('ooxml') {
}
japicmp.baseline = "org.apache.poi:poi:${japicmpversion}@jar"
test {
// for some reason catching the OOM does not work when run from Gradle
exclude '**/MemoryUsage.class'
}
}
project('examples') {