Skip to content

Commit d1e6f26

Browse files
committedJan 4, 2022
8279351: [TESTBUG] SADebugDTest.java does not handle "Address already in use" error
Reviewed-by: cjplummer
1 parent 93c7d90 commit d1e6f26

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed
 

‎test/hotspot/jtreg/serviceability/sa/sadebugd/SADebugDTest.java

+15-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* @test
26-
* @bug 8163805 8224252 8196751
26+
* @bug 8163805 8224252 8196751 8279351
2727
* @summary Checks that the jshdb debugd utility successfully starts
2828
* and tries to attach to a running process
2929
* @requires vm.hasSA
@@ -71,6 +71,16 @@ private static void runTests() throws Exception {
7171
}
7272
}
7373

74+
private static boolean checkOutput(final String line, final boolean useRmiPort, final int rmiPort) {
75+
if (!useRmiPort && line.contains(GOLDEN)) {
76+
testResult = true;
77+
} else if (useRmiPort && line.contains(RMI_CONNECTOR_IS_BOUND + rmiPort)) {
78+
testResult = true;
79+
} else if (line.contains(ADDRESS_ALREADY_IN_USE)) {
80+
portInUse = true;
81+
}
82+
return (line.contains(GOLDEN) || portInUse);
83+
}
7484

7585
private static void testWithPid(final boolean useRmiPort, final boolean useRegistryPort, final boolean useHostName) throws Exception {
7686
LingeredApp app = null;
@@ -95,9 +105,8 @@ private static void testWithPid(final boolean useRmiPort, final boolean useRegis
95105
jhsdbLauncher.addToolArg(Integer.toString(registryPort));
96106
}
97107

98-
int rmiPort = -1;
108+
final int rmiPort = useRmiPort ? Utils.findUnreservedFreePort(REGISTRY_DEFAULT_PORT, registryPort) : -1;
99109
if (useRmiPort) {
100-
rmiPort = Utils.findUnreservedFreePort(REGISTRY_DEFAULT_PORT, registryPort);
101110
jhsdbLauncher.addToolArg("--rmiport");
102111
jhsdbLauncher.addToolArg(Integer.toString(rmiPort));
103112
}
@@ -107,28 +116,16 @@ private static void testWithPid(final boolean useRmiPort, final boolean useRegis
107116
}
108117
ProcessBuilder pb = SATestUtils.createProcessBuilder(jhsdbLauncher);
109118

110-
final int finalRmiPort = rmiPort;
111-
112119
// The startProcess will block until the 'golden' string appears in either process' stdout or stderr
113120
// In case of timeout startProcess kills the debugd process
114-
Process debugd = startProcess("debugd", pb, null,
115-
l -> {
116-
if (!useRmiPort && l.contains(GOLDEN)) {
117-
testResult = true;
118-
} else if (useRmiPort && l.contains(RMI_CONNECTOR_IS_BOUND + finalRmiPort)) {
119-
testResult = true;
120-
} else if (l.contains(ADDRESS_ALREADY_IN_USE)) {
121-
portInUse = true;
122-
}
123-
return (l.contains(GOLDEN) || portInUse);
124-
}, 20, TimeUnit.SECONDS);
121+
Process debugd = startProcess("debugd", pb, null, l -> checkOutput(l, useRmiPort, rmiPort), 20, TimeUnit.SECONDS);
125122

126123
// If we are here, this means we have received the golden line and the test has passed
127124
// The debugd remains running, we have to kill it
128125
debugd.destroy();
129126
debugd.waitFor();
130127

131-
if (!testResult) {
128+
if (!testResult && !portInUse) {
132129
throw new RuntimeException("Expected message \"" +
133130
RMI_CONNECTOR_IS_BOUND + rmiPort + "\" is not found in the output.");
134131
}

0 commit comments

Comments
 (0)
Please sign in to comment.