Github user Tibor17 commented on a diff in the pull request: https://github.com/apache/maven-surefire/pull/144#discussion_r103106957 --- Diff: surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java --- @@ -236,13 +236,17 @@ private static void exit( int returnCode, Shutdown shutdownType, CommandReader r switch ( shutdownType ) { case KILL: + System.out.close(); --- End diff -- @ChristianSchulte This is executed right before JVM exit. But our problem is in the beginning of life time of JVM. This means the `InputStream.read()` and (`Process.waitFor()` or `Process.exec()`) are mutual exclusive on FreeBSD according to logs. It seems std/err will be tested instead of std/out. Additionally ACK before shutdown needs to be added as StephenC mentioned.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional commands, e-mail: dev-h...@maven.apache.org