summaryrefslogtreecommitdiffstats
path: root/jdisc_core_test
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-09-28 14:42:22 +0200
committergjoranv <gv@oath.com>2019-01-21 15:09:23 +0100
commit6b57575ed493e1017eec32caff3d260c00fda8b4 (patch)
treeb1293382453300272957ff0d8b2a5ed225157c53 /jdisc_core_test
parentedb174ba4ecf6dd0073acb3dcc8af1e2bc8cc057 (diff)
Ignore test that fails with Felix 6.0.
- The jdisc_core "bundle" now exports java.* packages, which only the felix.framework system bundle is allowed to.
Diffstat (limited to 'jdisc_core_test')
-rw-r--r--jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/ExportPackagesIntegrationTest.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/ExportPackagesIntegrationTest.java b/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/ExportPackagesIntegrationTest.java
index c965bec8544..d2c1d3b5140 100644
--- a/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/ExportPackagesIntegrationTest.java
+++ b/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/core/ExportPackagesIntegrationTest.java
@@ -2,6 +2,7 @@
package com.yahoo.jdisc.core;
import com.yahoo.jdisc.test.TestDriver;
+import org.junit.Ignore;
import org.junit.Test;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleException;
@@ -17,6 +18,7 @@ import static org.junit.Assert.assertTrue;
*/
public class ExportPackagesIntegrationTest {
+ @Ignore // jdisc_core.jar cannot be installed as a bundle since Felix 6.0, due to exporting java.* packages.
@Test
public void requireThatManifestContainsExportPackage() throws BundleException {
FelixFramework felix = TestDriver.newOsgiFramework();