[jboss-osgi-commits] JBoss-OSGI SVN: r94015 - projects/jboss-osgi/trunk/testsuite/example/src/test/java/org/jboss/test/osgi/example/http.

jboss-osgi-commits at lists.jboss.org jboss-osgi-commits at lists.jboss.org
Thu Sep 24 22:05:22 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-09-24 22:05:22 -0400 (Thu, 24 Sep 2009)
New Revision: 94015

Modified:
   projects/jboss-osgi/trunk/testsuite/example/src/test/java/org/jboss/test/osgi/example/http/HttpServiceTestCase.java
Log:
[JBCL-116] Potential deadlock in ClassLoaderManager
Remove FIXME

Modified: projects/jboss-osgi/trunk/testsuite/example/src/test/java/org/jboss/test/osgi/example/http/HttpServiceTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/example/src/test/java/org/jboss/test/osgi/example/http/HttpServiceTestCase.java	2009-09-25 02:02:07 UTC (rev 94014)
+++ projects/jboss-osgi/trunk/testsuite/example/src/test/java/org/jboss/test/osgi/example/http/HttpServiceTestCase.java	2009-09-25 02:05:22 UTC (rev 94015)
@@ -25,7 +25,6 @@
 
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.fail;
 import static org.junit.Assume.assumeTrue;
 
 import java.io.BufferedReader;
@@ -68,14 +67,6 @@
          sref = runtime.getServiceReference(HttpService.class.getName());
       }
 
-      if (sref == null && new OSGiTestHelper().isFrameworkJBossMC())
-      {
-         fail("FIXME [JBCL-116] Potential deadlock in ClassLoaderManager");
-         //System.out.println("FIXME [JBCL-116] Potential deadlock in ClassLoaderManager");
-         //httpServiceAvailable = false;
-         //return;
-      }
-
       assertNotNull("HttpService not null", sref);
       httpServiceAvailable = true;
 



More information about the jboss-osgi-commits mailing list