Skip to content

Commit 8785737

Browse files
author
Alex Menkov
committedJul 26, 2021
8269616: serviceability/dcmd/framework/VMVersionTest.java fails with Address already in use error
Reviewed-by: sspitsyn, kevinw
1 parent 3aadae2 commit 8785737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/hotspot/jtreg/serviceability/dcmd/framework/TestProcessLauncher.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public TestProcessLauncher(String className, ArgumentHandler argHandler) {
5050
}
5151

5252
public TestProcessLauncher(String className) {
53-
this(className, new ArgumentHandler(new String[0]));
53+
this(className, new ArgumentHandler(new String[] {"-transport.address=dynamic"}));
5454
}
5555

5656
public Process launch() {

3 commit comments

Comments
 (3)

openjdk-notifier[bot] commented on Jul 26, 2021

@openjdk-notifier[bot]

GoeLin commented on Jan 28, 2022

@GoeLin
Member

/backport jdk17u-dev

openjdk[bot] commented on Jan 28, 2022

@openjdk[bot]

@GoeLin the backport was successfully created on the branch GoeLin-backport-8785737b in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 8785737b from the openjdk/jdk repository.

The commit being backported was authored by Alex Menkov on 26 Jul 2021 and was reviewed by Serguei Spitsyn and Kevin Walls.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev GoeLin-backport-8785737b:GoeLin-backport-8785737b
$ git checkout GoeLin-backport-8785737b
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev GoeLin-backport-8785737b
Please sign in to comment.