You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pd...@apache.org on 2012/10/03 08:07:36 UTC

svn commit: r1393304 - in /felix/trunk/scr/src/test/resources: integration_test_FELIX_3680.xml integration_test_component_concurrency.xml

Author: pderop
Date: Wed Oct  3 06:07:36 2012
New Revision: 1393304

URL: http://svn.apache.org/viewvc?rev=1393304&view=rev
Log:
The component should be disabled by default, since it is manually enabled from integration test

Modified:
    felix/trunk/scr/src/test/resources/integration_test_FELIX_3680.xml
    felix/trunk/scr/src/test/resources/integration_test_component_concurrency.xml

Modified: felix/trunk/scr/src/test/resources/integration_test_FELIX_3680.xml
URL: http://svn.apache.org/viewvc/felix/trunk/scr/src/test/resources/integration_test_FELIX_3680.xml?rev=1393304&r1=1393303&r2=1393304&view=diff
==============================================================================
--- felix/trunk/scr/src/test/resources/integration_test_FELIX_3680.xml (original)
+++ felix/trunk/scr/src/test/resources/integration_test_FELIX_3680.xml Wed Oct  3 06:07:36 2012
@@ -11,7 +11,7 @@
 	language governing permissions and limitations under the License. -->
 <components xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0">
 	<scr:component xmlns:scr='http://www.osgi.org/xmlns/scr/v1.1.0'
-		name='A' activate='start'>
+		name='A' activate='start' enabled='false'>
 		<implementation
 			class='org.apache.felix.scr.integration.components.felix3680.A' />
 		<service>

Modified: felix/trunk/scr/src/test/resources/integration_test_component_concurrency.xml
URL: http://svn.apache.org/viewvc/felix/trunk/scr/src/test/resources/integration_test_component_concurrency.xml?rev=1393304&r1=1393303&r2=1393304&view=diff
==============================================================================
--- felix/trunk/scr/src/test/resources/integration_test_component_concurrency.xml (original)
+++ felix/trunk/scr/src/test/resources/integration_test_component_concurrency.xml Wed Oct  3 06:07:36 2012
@@ -12,7 +12,7 @@
 <components xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0">
 	<scr:component
 		name='org.apache.felix.scr.integration.components.concurrency.A'
-		factory='AFactory' activate='start'>
+		factory='AFactory' activate='start' enabled='false'>
 		<implementation
 			class='org.apache.felix.scr.integration.components.concurrency.A' />
 		<reference name='b'