-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HBASE-27258 Computed argLine not passed through to surefire configuration #4668
Conversation
🎊 +1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#argLine See the documentation here, the user property is called 'argLine', which means it will read the 'argLine' property defined in the properties section by default. This is how the jacoco plugin injects its agent while executing UTs. |
@apurtell are you seeing behavior where |
I have a unit test that is failing with OOME and when looking at the POM I mistakenly thought it was because the -Xmx on the argLine was not being passed through. Thanks for the clarification. Will close this PR and the JIRA. |
Perhaps I am missing something.