-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Regression in launching IntegrationTests instrumented with Jacoco-Maven-Plugin #19623
Labels
Milestone
Comments
/cc @quarkusio/devtools |
bvarner
changed the title
Regression in launching Jacoco-Maven-Plugin for IntegrationTests
Regression in launching IntegrationTests instrumented with Jacoco-Maven-Plugin
Aug 24, 2021
geoand
added a commit
to geoand/quarkus
that referenced
this issue
Aug 25, 2021
The split is intended to happen on a whitespace character, not the comma character used by properties Fixes: quarkusio#19623
#19641 should fix the issue but it's probably too late to get it into |
geoand
added a commit
that referenced
this issue
Aug 25, 2021
Fix quarkus.test.arg-line multiple args handling
Thanks @geoand for responding on this one. I'll try it again on 2.2.1.Final. ;-) |
Thanks for reporting! |
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 25, 2021
The split is intended to happen on a whitespace character, not the comma character used by properties Fixes: quarkusio#19623 (cherry picked from commit 1982c8b)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 26, 2021
The split is intended to happen on a whitespace character, not the comma character used by properties Fixes: quarkusio#19623 (cherry picked from commit 1982c8b)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 30, 2021
The split is intended to happen on a whitespace character, not the comma character used by properties Fixes: quarkusio#19623 (cherry picked from commit 1982c8b)
Yes, it's fixed in 2.2.1.Final. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Quarkus 2.1.x (I'm not sure which version initiated it)
Trying to run integration tests (failsafe) with an ${argLine} provided from jacoco-maven-plugin that contains multiple arguments is broken. Looks like it's parsing the -javaagent argument for
,
's then splitting those into additional java command arguments, which is, clearly not valid.Expected behavior
Expected behavior is for the ${argline} to not get mangled into separate arguments, and be quoted wholly as a single command line argument. Just like it was in 2.0.x.... below:
Note, the
,append=true,exclclassloader=...
bits are arguments to the javaagent, not the java executable.Actual behavior
Running integration tests with 2.1.x:
How to Reproduce?
https://quarkus.io/guides/tests-with-coverage#coverage-for-integration-tests
Output of
uname -a
orver
Linux fibonacci 5.11.0-31-generic #33-Ubuntu SMP Wed Aug 11 13:19:04 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Output of
java -version
Linux fibonacci 5.11.0-31-generic #33-Ubuntu SMP Wed Aug 11 13:19:04 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.1.x
Build tool (ie. output of
mvnw --version
orgradlew --version
)Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f) Maven home: /home/bvarner/.m2/wrapper/dists/apache-maven-3.6.3-bin/1iopthnavndlasol9gbrbg6bf2/apache-maven-3.6.3 Java version: 11.0.11, vendor: Ubuntu, runtime: /usr/lib/jvm/java-11-openjdk-amd64 Default locale: en_US, platform encoding: UTF-8 OS name: "linux", version: "5.11.0-31-generic", arch: "amd64", family: "unix"
Additional information
No response
The text was updated successfully, but these errors were encountered: