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:
parent
95dcb52a01
commit
a84f29106b
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user