Community
Participate
Working Groups
The DirectorAppTest is passing -vmargs ... options directly to the DirectorApp application. In real life, this will never happen since -vmargs are consumed by the launcher. Passing them is also completely redundant since nobody will act on them in the test since the launcher is never involved.
Created attachment 133077 [details] Patch that removes the redundant options I'm implementing a more stringent check for the command line options now that complains about things that are not recognized. This change is needed to make the tests run correctly.
I can review this.
Fixed in HEAD.
To clarify slightly, the native executable does pass the -vmargs to eclipse. They are stripped off by main and set on the system property "eclipse.vmargs". The remainder of the arguments are then passed on to the framework.
Yes, but in this case the test is passing the arguments directly to an application's run method. In normal launching the vm args aren't passed to the application.