8248162: serviceability/attach/RemovingUnixDomainSocketTest.java failed
Reviewed-by: cjplummer, sspitsyn
This commit is contained in:
parent
40754f12f7
commit
cc5691c69e
@ -99,8 +99,6 @@ serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorStatIntervalTest.java 8214
|
||||
serviceability/jvmti/HeapMonitor/MyPackage/HeapMonitorStatArrayCorrectnessTest.java 8224150 generic-all
|
||||
serviceability/jvmti/ModuleAwareAgents/ThreadStart/MAAThreadStart.java 8225354 windows-all
|
||||
|
||||
serviceability/attach/RemovingUnixDomainSocketTest.java 8248162 linux-x64
|
||||
|
||||
#############################################################################
|
||||
|
||||
# :hotspot_misc
|
||||
|
@ -74,7 +74,7 @@ public class ClhsdbJstackXcompStress {
|
||||
System.err.println(out.getStderr());
|
||||
}
|
||||
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
out.stdoutShouldNotContain("Error occurred during stack walking:");
|
||||
out.stdoutShouldContain(LingeredAppWithRecComputation.THREAD_NAME);
|
||||
List<String> stdoutList = Arrays.asList(out.getStdout().split("\\R"));
|
||||
|
@ -68,7 +68,7 @@ public class JhsdbThreadInfoTest {
|
||||
out.shouldNotContain(" prio=0 ");
|
||||
out.shouldNotContain(" java.lang.Thread.State: UNKNOWN");
|
||||
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
|
||||
System.out.println("Test Completed");
|
||||
} catch (Exception ex) {
|
||||
|
@ -65,7 +65,7 @@ public class TestJhsdbJstackLock {
|
||||
out.shouldMatch("^\\s+- locked <0x[0-9a-f]+> \\(a java\\.lang\\.Thread\\)$");
|
||||
out.shouldMatch("^\\s+- locked <0x[0-9a-f]+> \\(a java\\.lang\\.Class for int\\)$");
|
||||
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
|
||||
System.out.println("Test Completed");
|
||||
} finally {
|
||||
|
@ -70,7 +70,7 @@ public class DebugdConnectTest {
|
||||
OutputAnalyzer out = runJHSDB("jstack", id);
|
||||
|
||||
out.shouldContain("LingeredApp");
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
out.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
@ -78,7 +78,7 @@ public class DebugdConnectTest {
|
||||
OutputAnalyzer out = runJHSDB("jmap", id);
|
||||
|
||||
out.shouldContain("JVM version is");
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
out.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
@ -86,7 +86,7 @@ public class DebugdConnectTest {
|
||||
OutputAnalyzer out = runJHSDB("jinfo", id);
|
||||
|
||||
out.shouldContain("Java System Properties:");
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
out.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
@ -94,7 +94,7 @@ public class DebugdConnectTest {
|
||||
OutputAnalyzer out = runJHSDB("jsnap", id);
|
||||
|
||||
out.shouldContain("java.vm.name=");
|
||||
out.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
out.shouldHaveExitValue(0);
|
||||
}
|
||||
|
||||
|
@ -91,7 +91,7 @@ public class TestJcmdDefaults {
|
||||
*/
|
||||
private static void matchListedProcesses(OutputAnalyzer output) {
|
||||
output.stdoutShouldMatchByLine(JCMD_LIST_REGEX);
|
||||
output.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
output.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
}
|
||||
|
||||
private static void verifyOutputAgainstFile(OutputAnalyzer output) throws IOException {
|
||||
|
@ -153,7 +153,7 @@ public class TestJcmdSanity {
|
||||
*/
|
||||
private static void matchPerfCounters(OutputAnalyzer output) {
|
||||
output.stdoutShouldMatchByLine(PERF_COUNTER_REGEX, null, PERF_COUNTER_REGEX);
|
||||
output.stderrShouldBeEmptyIgnoreVMWarnings();
|
||||
output.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
|
||||
}
|
||||
|
||||
private static void verifyOutputAgainstFile(OutputAnalyzer output) throws IOException {
|
||||
|
Loading…
Reference in New Issue
Block a user