运行tycho测试后的OSGi控制台

时间:2012-11-20 12:42:19

标签: eclipse osgi tycho

我想知道有没有办法告诉eclipse中的osgi控制台在使用tycho-surefire-plugin运行测试后不退出?

我已经尝试了<argLine>-Dosgi.noShutdown=true</argLine><appArgLine>-console -noExit</appArgLine>,但我没有得到我想要的东西。

1 个答案:

答案 0 :(得分:3)

我终于通过在远程调试模式下启动tycho测试成功进入OSGi控制台。但是,与上述解决方案相比,我必须使用以下配置:

<argLine>-ea -Dosgi.clean=true -Ddebug=true -Dosgi.console.enable.builtin=true</argLine>  
<appArgLine>-console 1234 -noExit</appArgLine>