瀏覽代碼

re-enable test but make it less stressful - now goes OOM very easily

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898295 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_1
PJ Fanning 2 年之前
父節點
當前提交
b3c4857222
共有 1 個文件被更改,包括 2 次插入4 次删除
  1. 2
    4
      poi-ooxml/src/test/java/org/apache/poi/ooxml/TestPOIXMLDocument.java

+ 2
- 4
poi-ooxml/src/test/java/org/apache/poi/ooxml/TestPOIXMLDocument.java 查看文件

@@ -50,7 +50,6 @@ import org.apache.poi.util.TempFile;
import org.apache.poi.xslf.usermodel.XMLSlideShow;
import org.apache.poi.xssf.usermodel.XSSFRelation;
import org.apache.poi.xwpf.usermodel.XWPFRelation;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.function.Executable;

@@ -311,7 +310,6 @@ public final class TestPOIXMLDocument {
}


@Disabled("needs investigation")
@Test
void testOSGIClassLoading() throws IOException {
byte[] data;
@@ -332,8 +330,8 @@ public final class TestPOIXMLDocument {
UncaughtHandler uh = new UncaughtHandler();

// check schema type loading and check if we could run in an OOM
Thread[] ta = new Thread[30];
for (int j=0; j<10; j++) {
Thread[] ta = new Thread[4];
for (int j=0; j<3; j++) {
for (int i=0; i<ta.length; i++) {
ta[i] = new Thread(run);
ta[i].setContextClassLoader(cl.getParent());

Loading…
取消
儲存