On Fri, 29 Jul 2022 16:49:36 GMT, Roger Riggs <rri...@openjdk.org> wrote:
> The test java/lang/ProcessBuilder/PipelineLeaksFD.java fails intermittently, > usually associated with fastdebug and -Xcomp. > It reports extra file descriptors are open that not expected. > The test of pipelines did not explicitly use or close the stderr streams of > each stream except the last. > The intermittent nature of the failure is due to the non-deterministic GC > interactions that close the streams when they become un-referenced. > > The solution in this case is to redirect the error stream to the stdout > stream for each pipeline stage except the last. > > The test is removed from the ProblemList-Xcomp. This pull request has now been integrated. Changeset: 226b8e68 Author: Roger Riggs <rri...@openjdk.org> URL: https://git.openjdk.org/jdk/commit/226b8e680a82096b3d268703872d30182c10e326 Stats: 12 lines in 2 files changed: 7 ins; 2 del; 3 mod 8290885: java/lang/ProcessBuilder/PipelineLeaksFD.java fail: More or fewer pipes than expected Reviewed-by: bpb, naoto, jpai ------------- PR: https://git.openjdk.org/jdk/pull/9687