Skip to content

Commit

Permalink
8268433: serviceability/dcmd/framework/VMVersionTest.java fails with …
Browse files Browse the repository at this point in the history
…Unable to send object throw not established PipeIO Listener Thread connection

Backport-of: 280f2d57d1f78b3d15dd98e726267a100eb0b5db
  • Loading branch information
GoeLin committed Nov 13, 2023
1 parent a37a9bc commit 55b4c12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions test/hotspot/jtreg/ProblemList-zgc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,3 @@ serviceability/sa/TestJmapCoreMetaspace.java 8268722,8268636
serviceability/sa/TestJhsdbJstackMixed.java 8248912 generic-all
serviceability/sa/ClhsdbPstack.java#id0 8248912 generic-all
serviceability/sa/ClhsdbPstack.java#id1 8248912 generic-all

serviceability/dcmd/framework/HelpTest.java 8268433 windows-x64
serviceability/dcmd/framework/InvalidCommandTest.java 8268433 windows-x64
serviceability/dcmd/framework/VMVersionTest.java 8268433 windows-x64
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ public Process launch() {

public void quit() {
if (pipe != null) {
pipe.println("quit");
if (pipe.isConnected()) {
pipe.println("quit");
} else {
System.out.println("WARNING: IOPipe is not connected");
}
}
}

Expand Down

0 comments on commit 55b4c12

Please sign in to comment.