You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2018/09/10 20:22:52 UTC

[maven-surefire] branch master updated (da907d5 -> 47db39f)

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


    from da907d5  [MPOM-205] use sha512 checksums instead of sha1
     add 64cf3e1  [SUREFIRE-1561] Logs in Parallel Tests are mixed up when forkMode=never or forkCount=0
     add 5ad0c9b  simplified Surefire1535TestNGParallelSuitesIT
     add 3476122  collection with TestMethodStats should be thread safe
     add b791068  wrong implementation for EOL in lineBoundSymbolWidth()
     add be2be7e  [SUREFIRE-1565] Surefire should support parameterized reportsDirectory
     add 3faa92c  [SUREFIRE-1562] Support Java 11
     add 47db39f  improvement: more safe with try-finally ConcurrentRunListener#testSetCompleted()

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile                                        |   7 +-
 maven-surefire-common/pom.xml                      |  10 ++
 .../plugin/surefire/AbstractSurefireMojo.java      |  29 +----
 .../maven/plugin/surefire/CommonReflector.java     |   4 +-
 .../surefire/StartupReportConfiguration.java       |  52 +++++---
 .../maven/plugin/surefire/SurefireHelper.java      |  49 +++++++
 .../surefire/booterclient/BooterSerializer.java    |   6 +-
 .../booterclient/DefaultForkConfiguration.java     |  16 +--
 .../plugin/surefire/booterclient/ForkStarter.java  |  64 +++++----
 .../surefire/booterclient/output/ForkClient.java   |  18 +--
 .../output/InPluginProcessDumpSingleton.java       |  57 ++++----
 .../output/NativeStdErrStreamConsumer.java         |   3 +-
 .../surefire/report/ConsoleOutputFileReporter.java |  38 ++++--
 .../surefire/report/DefaultReporterFactory.java    |  29 +++--
 .../surefire/report/NullConsoleOutputReceiver.java |  59 ---------
 .../surefire/report/StatelessXmlReporter.java      |   1 +
 .../plugin/surefire/report/TestSetRunListener.java |  42 +++---
 .../maven/plugin/surefire/SurefireHelperTest.java  |  26 +++-
 ...ooterDeserializerProviderConfigurationTest.java |   2 +-
 ...BooterDeserializerStartupConfigurationTest.java |   4 +-
 .../booterclient/ForkingRunListenerTest.java       |  10 +-
 .../booterclient/TestSetMockReporterFactory.java   |   2 +-
 .../report/DefaultReporterFactoryTest.java         |  10 +-
 .../report/ConsoleOutputFileReporterTest.java      |   8 +-
 .../fork-options-and-parallel-execution.apt.vm     |  44 +++++++
 maven-surefire-plugin/src/site/fml/faq.fml         |   1 +
 pom.xml                                            |  30 ++++-
 .../maven/surefire/booter/DumpErrorSingleton.java  |  15 +--
 .../surefire/util/internal/DumpFileUtils.java      |   8 +-
 surefire-booter/pom.xml                            |  10 ++
 .../apache/maven/surefire/booter/ForkedBooter.java |   3 +-
 .../apache/maven/surefire/its/Java9FullApiIT.java  |   9 +-
 .../maven/surefire/its/WorkingDirectoryIT.java     |  11 +-
 .../surefire/its/fixture/HelperAssertions.java     |   2 +-
 .../surefire/its/fixture/OutputValidator.java      |   2 +-
 .../surefire/its/fixture/SurefireLauncher.java     |   8 +-
 .../maven/surefire/its/fixture/TestFile.java       |  24 +++-
 .../jiras/Surefire1122ParallelAndFlakyTestsIT.java |   9 ++
 .../jiras/Surefire1177TestngParallelSuitesIT.java  |  38 +++++-
 .../jiras/Surefire1535TestNGParallelSuitesIT.java  | 145 ++++++++++++++++-----
 .../surefire-1122-parallel-and-flakyTests/pom.xml  |  16 +++
 .../surefire-1535-parallel-testng/pom.xml          |  48 ++++---
 .../src/test/java/it/ParallelTest.java             |  46 -------
 .../src/test/java/it/ParallelTest1.java            |   9 +-
 .../src/test/java/it/ParallelTest2.java            |   9 +-
 .../test/java/testng/suiteXml/TestNGSuiteTest.java |   9 +-
 .../child/src/test/java/workingDir/BasicTest.java  |   3 +-
 .../common/junit4/JUnit4RunListenerFactory.java    |   4 +-
 .../surefire/junitcore/ConcurrentRunListener.java  |  14 +-
 .../maven/surefire/junitcore/JUnitCoreTester.java  |   2 +-
 50 files changed, 645 insertions(+), 420 deletions(-)
 delete mode 100644 maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/NullConsoleOutputReceiver.java
 delete mode 100644 surefire-its/src/test/resources/surefire-1535-parallel-testng/src/test/java/it/ParallelTest.java