8180393: [TESTBUG] CDSTestUtils property test.cds.copy.child.stdout should be true by default

Changed default value of test.cds.copy.child.stdout to true

Reviewed-by: hseigel, iklam, sspitsyn
This commit is contained in:
Mikhailo Seledtsov 2017-05-17 11:28:56 -07:00
parent 95dcb52a01
commit a84f29106b

View File

@ -36,10 +36,9 @@ import jdk.test.lib.process.ProcessTools;
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");