OpenJDK / amber / amber
changeset 33109:3eebb5e50129
8138574: [TESTBUG] TestBasicLogOutput.java doesn't account for padding
Summary: TestBasicLogOutput.java edited to account for padding in tag descriptors
Reviewed-by: ddmitriev, hseigel, coleenp
Contributed-by: rachel.protacio@oracle.com
author | hseigel |
---|---|
date | Thu, 01 Oct 2015 15:14:15 -0400 |
parents | 6714a3872d8f |
children | dfd3f4fb2c08 b7ea176a5cce |
files | hotspot/test/serviceability/logging/TestBasicLogOutput.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/test/serviceability/logging/TestBasicLogOutput.java Wed Sep 30 18:09:40 2015 -0400 +++ b/hotspot/test/serviceability/logging/TestBasicLogOutput.java Thu Oct 01 15:14:15 2015 -0400 @@ -35,7 +35,7 @@ public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:all=trace", "-version"); OutputAnalyzer output = new OutputAnalyzer(pb.start()); - output.shouldContain("[logging]"); // expected tag(s) + output.shouldMatch("\\[logging *\\]"); // expected tag(s) output.shouldContain("Log configuration fully initialized."); // expected message output.shouldHaveExitValue(0); }