Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2018-01-24 14:41:37 +0000
committerThomas Watson2018-01-24 14:41:37 +0000
commitaf758f883d4e132c6e24e44f301ef57cb6fdbf86 (patch)
tree893b7e15fb92031de7849a65a6fb8cfe83c38538
parentc863bb2415b515db332d51a55a14ea21470e9d1e (diff)
downloadrt.equinox.bundles-af758f883d4e132c6e24e44f301ef57cb6fdbf86.tar.gz
rt.equinox.bundles-af758f883d4e132c6e24e44f301ef57cb6fdbf86.tar.xz
rt.equinox.bundles-af758f883d4e132c6e24e44f301ef57cb6fdbf86.zip
Bug 530247 - [http] test ServletTest.test_AsyncOutput1 fails onS4_8_0_M5I20180128-2000I20180127-1500I20180127-0150I20180126-2040I20180124-2000
everything bug windows during build with OOM Change-Id: I0aa8dfe26447c042f040be15b438297ace661ffe Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/ServletTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/ServletTest.java b/bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/ServletTest.java
index e954c7fda..8e29a6f57 100644
--- a/bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/ServletTest.java
+++ b/bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/ServletTest.java
@@ -3783,7 +3783,8 @@ public class ServletTest extends BaseTest {
}
}
- @Test
+ //Disable @Test
+ // TODO this test takes large amounts of memory and can fail with OOM on build machines see bug 530247
public void test_AsyncOutput1() throws Exception {
Servlet s1 = new AsyncOutputServlet();
Collection<ServiceRegistration<?>> registrations = new ArrayList<ServiceRegistration<?>>();

Back to the top