Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-12-11 14:05:15 +0000
committerThomas Watson2017-12-13 17:13:03 +0000
commit03d4817df48f3857799ec0ec3439790e2c425bec (patch)
treec300a9f5adab6cb39184bdc2081e93292f19ac9f /bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java
parent6f2b763dc9c65ad86450ee6aec82da56d6c95617 (diff)
downloadrt.equinox.framework-03d4817df48f3857799ec0ec3439790e2c425bec.tar.gz
rt.equinox.framework-03d4817df48f3857799ec0ec3439790e2c425bec.tar.xz
rt.equinox.framework-03d4817df48f3857799ec0ec3439790e2c425bec.zip
Bug 528422 - [osgi R7] Support for Multi-Release jars
Change-Id: Iab950e54caa6fffb3c995694c0d7762111a846a3 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java')
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java
index 01fb4ffe3..d1f5ada35 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2015 IBM Corporation and others.
+ * Copyright (c) 2006, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -16,6 +16,7 @@ import junit.framework.TestSuite;
public class BundleTests {
public static Test suite() {
TestSuite suite = new TestSuite(BundleTests.class.getName());
+ suite.addTest(MultiReleaseJarTests.suite());
suite.addTest(URLHandlerTests.suite());
suite.addTest(PersistedBundleTests.suite());
suite.addTest(CascadeConfigTests.suite());

Back to the top