Re: [equinox-dev] tests are needed for compendium implementations

2008-08-26 Thread Pavlin Dobrev
Hi Thomas, We have automated tests for the DS, IO and Wireadmin in our own format. We can contribute them but this will take some time because of the need tests to be rewritten in Eclipse test format. We did not have our own tests for the initial provisioning. We test it with OSGi test case

[equinox-dev] Problem to Unistall Plugin in eclispe3.4

2008-08-26 Thread Hardik Parikh
Hello, We have created plugin in eclipse 3.3 with having source for Custom Install Handler by extending BaseInstallHandler API. After creating plugin we are able to install and uninstall it properly in eclipse 3.3. But when we tried to install in eclipse 3.4 with new feature p2, it points

Re: [equinox-dev] set bundles startup/shutdown order

2008-08-26 Thread Thomas Watson
The StartLevel service is used both for controlling start order at launch and stop order at shutdown. If you set bundle A to have a lower start level than bundle B then bundle A will start before bundle B on launch and bundle B will stop before bundle A on shutdown. HTH. Tom