-
Hi, We are trying to use platform-specific fragments in our plugin. Since those fragments include executable binaries, we have this idea of avoiding the cost of extraction in a temporary folder at every startup by asking Eclipse to install the bundle "exploded" (Eclipse-BundleShape: dir).
This is working fine when doing manual testing, but not during the JUnit tests. The fragment is correctly exploded by Tycho, but I have the impression that p2.inf instructions are ignored. I read that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
@henryju p2.inf touchpoints are only honored when using the
I think it is a bit misleading, but for sure it is not used very often and a rather special case like this.
By the way making is readable and executable for everyone is probably a security risk |
Beta Was this translation helpful? Give feedback.
@henryju p2.inf touchpoints are only honored when using the
<testRuntime>p2Installed</testRuntime>
I think it is a bit misleading, but for sure it is not used very often and a rather special case like this.
By the way making is readable and executable for everyone is probably a security risk