# HG changeset patch # User mseledtsov # Date 1495045736 25200 # Node ID c9a98ebe678b1134d679a9c4cd35dc4537dfa73c # Parent 656fa621d3eca9daa47704ac285e25b8d7683113 8180393: [TESTBUG] CDSTestUtils property test.cds.copy.child.stdout should be true by default Summary: Changed default value of test.cds.copy.child.stdout to true Reviewed-by: hseigel, iklam, sspitsyn diff -r 656fa621d3ec -r c9a98ebe678b test/lib/jdk/test/lib/cds/CDSTestUtils.java --- a/test/lib/jdk/test/lib/cds/CDSTestUtils.java Tue May 16 01:11:26 2017 +0200 +++ b/test/lib/jdk/test/lib/cds/CDSTestUtils.java Wed May 17 11:28:56 2017 -0700 @@ -36,10 +36,9 @@ public class CDSTestUtils { // Specify this property to copy sdandard output of the child test process to // the parent/main stdout of the test. - // By default such output is logged into a file, but not copied into the main stdout - // to avoid excessive log pollution. See executeAndLog() for details + // By default such output is logged into a file, and is copied into the main stdout. public static final boolean CopyChildStdoutToMainStdout = - Boolean.getBoolean("test.cds.copy.child.stdout"); + Boolean.valueOf(System.getProperty("test.cds.copy.child.stdout", "true")); // This property is passed to child test processes public static final String TestTimeoutFactor = System.getProperty("test.timeout.factor", "1.0");