[jboss-osgi-commits] JBoss-OSGI SVN: r97529 - in projects/jboss-osgi/trunk/testsuite/functional: src/test/java/org/jboss/test/osgi/performance/blueprint and 1 other directory.

jboss-osgi-commits at lists.jboss.org jboss-osgi-commits at lists.jboss.org
Tue Dec 8 04:09:54 EST 2009


Author: thomas.diesler at jboss.com
Date: 2009-12-08 04:09:53 -0500 (Tue, 08 Dec 2009)
New Revision: 97529

Modified:
   projects/jboss-osgi/trunk/testsuite/functional/pom.xml
   projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/performance/blueprint/BlueprintStressTestCase.java
Log:
Exclude org.jboss.metadata:jboss-metadata from ejb3-ext-api

Modified: projects/jboss-osgi/trunk/testsuite/functional/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/pom.xml	2009-12-08 08:53:15 UTC (rev 97528)
+++ projects/jboss-osgi/trunk/testsuite/functional/pom.xml	2009-12-08 09:09:53 UTC (rev 97529)
@@ -57,6 +57,12 @@
       <groupId>org.jboss.ejb3</groupId>
       <artifactId>jboss-ejb3-ext-api</artifactId>
       <version>${version.jboss.ejb3}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.jboss.metadata</groupId>
+          <artifactId>jboss-metadata</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 
@@ -158,6 +164,7 @@
             <configuration>
               <excludes>
                 <exclude>${target.container.excludes}</exclude>
+                <exclude>org/jboss/test/osgi/performance/**</exclude>
                 <!-- [JBOSGI-206] Wire to an already uninstalled bundle -->
                 <exclude>org/jboss/test/osgi/jbosgi39/**</exclude>
                 <!-- [JBOSGI-108] Investigate statics on PackageAdmin.refresh -->
@@ -210,6 +217,7 @@
             <configuration>
               <excludes>
                 <exclude>${target.container.excludes}</exclude>
+                <exclude>org/jboss/test/osgi/performance/**</exclude>
               </excludes>
             </configuration>
           </plugin>
@@ -256,6 +264,7 @@
             <configuration>
               <excludes>
                 <exclude>${target.container.excludes}</exclude>
+                <exclude>org/jboss/test/osgi/performance/**</exclude>
                 <!-- [JBOSGI-143] Add initial support for DynamicImport-Package -->
                 <exclude>org/jboss/test/osgi/jbosgi143/**</exclude>
                 <!-- [JBOSGI-151] Cannot resolve circular dependencies -->
@@ -309,6 +318,7 @@
             <configuration>
               <excludes>
                 <exclude>${target.container.excludes}</exclude>
+                <exclude>org/jboss/test/osgi/performance/**</exclude>
                 <!-- [JBOSGI-143] Add initial support for DynamicImport-Package -->
                 <exclude>org/jboss/test/osgi/jbosgi143/**</exclude>
                 <!-- [JBOSGI-151] Cannot resolve circular dependencies -->

Modified: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/performance/blueprint/BlueprintStressTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/performance/blueprint/BlueprintStressTestCase.java	2009-12-08 08:53:15 UTC (rev 97528)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/performance/blueprint/BlueprintStressTestCase.java	2009-12-08 09:09:53 UTC (rev 97529)
@@ -32,7 +32,6 @@
 import org.jboss.osgi.testing.OSGiTestHelper;
 import org.jboss.test.osgi.performance.blueprint.bundle.ServiceA;
 import org.jboss.test.osgi.performance.blueprint.bundle.ServiceB;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.osgi.service.blueprint.container.BlueprintContainer;
 
@@ -45,7 +44,6 @@
 public class BlueprintStressTestCase
 {
    @Test
-   @Ignore
    public void testBlueprintBundleInstall() throws Exception
    {
       OSGiRuntime runtime = new OSGiTestHelper().getDefaultRuntime();



More information about the jboss-osgi-commits mailing list