Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2019-06-06 18:11:38 +0000
committerThomas Watson2019-06-10 13:42:42 +0000
commitea9b6a9a5eb69d9428a5cf9ea337541a009f4751 (patch)
treed99d9dfaf49409add7e9f172afa53dbf120c55a9 /bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
parent7e858cf2d9b52934e943b584b0975eeda8e27fb3 (diff)
downloadrt.equinox.framework-ea9b6a9a5eb69d9428a5cf9ea337541a009f4751.tar.gz
rt.equinox.framework-ea9b6a9a5eb69d9428a5cf9ea337541a009f4751.tar.xz
rt.equinox.framework-ea9b6a9a5eb69d9428a5cf9ea337541a009f4751.zip
Bug 548075 - Ability to control if bundles are activated in parallelI20190610-1800
Add a new option equinox.start.level.restrict.parallel which is false by default. Setting this value to true requires that the method Module.setParallelActivation must be called with true to enable parallel activation for the Module. The parallel activation setting is persistent across restarts. Tests have been added to test for persistence of the setting and that the setting is applied correctly when activating bundles from the start-level implementation. Change-Id: I20ea5807edfd10762fc5758317d946946299d5a7 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF')
-rw-r--r--bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF5
1 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF b/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
index 2524696c8..7b8f8cef6 100644
--- a/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF
@@ -2,15 +2,14 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Core OSGi Tests
Bundle-SymbolicName: org.eclipse.osgi.tests;singleton:=true
-Bundle-Version: 3.13.600.qualifier
+Bundle-Version: 3.15.0.qualifier
Bundle-Vendor: Eclipse.org
-Bundle-Localization: plugin
Require-Bundle:
org.eclipse.core.runtime,
org.eclipse.core.tests.harness,
org.eclipse.test.performance,
org.junit
-Eclipse-LazyStart: true
+Bundle-ActivationPolicy: lazy
Bundle-Activator: org.eclipse.osgi.tests.OSGiTestsActivator
Import-Package: org.osgi.service.event; resolution:="optional"
Export-Package: org.eclipse.osgi.tests.bundles,

Back to the top