Scoutman opened a new issue, #3210: URL: https://github.com/apache/maven-surefire/issues/3210
### Affected version 3.5.4 ### Bug description **Affected version** 3.5.4 **Bug description** Hello, we updated maven-surefire-plugin from 3.2.5 to 3.5.4. After that the XML have a differnt classname(in testcase) in the report. In the old version was **(Linux)** suffix included. In the new version the suffix is missing. Are there any misconfigurations or is it a new behavior in the new version? Or a bug? Plugin: org.apache.maven.plugins, maven-surefire-plugin, v3.2.5 ``` <?xml version="1.0" encoding="UTF-8"?> <testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report-3.0.xsd" version="3.0" name="com.example.MonkeyTest(Linux)" time="0.123" tests="1" errors="0" skipped="0" failures="1"> <properties> <property name="surefire.reportsDirectory" value="target/Linux-surefire-reports"/> <property name="failsafe.reportNameSuffix" value="Linux"/> <property name="failsafe.reportsDirectory" value="target/Linux-failsafe-reports"/> <property name="surefire.jacoco.destFile" value="target/Linux-jacoco.exec"/> <property name="surefire.reportNameSuffix" value="Linux"/> <property name="failsafe.jacoco.destFile" value="target/Linux-jacoco-it.exec"/> </properties> <testcase name="testMonkeyConvert" classname="com.example.MonkeyTest(Linux)" time="0.123"> ``` --------- Plugin: org.apache.maven.plugins, maven-surefire-plugin, v3.5.4 ``` <?xml version="1.0" encoding="UTF-8"?> <testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" version="3.0.2" name="com.example.MonkeyTest(Linux)" time="0.123" tests="1" errors="0" skipped="0" failures="1"> <properties> <property name="surefire.reportsDirectory" value="target/Linux-surefire-reports"/> <property name="failsafe.reportNameSuffix" value="Linux"/> <property name="failsafe.reportsDirectory" value="target/Linux-failsafe-reports"/> <property name="surefire.jacoco.destFile" value="target/Linux-jacoco.exec"/> <property name="surefire.reportNameSuffix" value="Linux"/> <property name="failsafe.jacoco.destFile" value="target/Linux-jacoco-it.exec"/> </properties> <testcase name="testMonkeyConvert" classname="com.example.MonkeyTest" time="0.123"> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
