8240343: JDI stopListening/stoplis001 "FAILED: listening is successfully stopped without starting listening"

Reviewed-by: cjplummer, sspitsyn
This commit is contained in:
Alex Menkov 2024-04-12 22:29:34 +00:00
parent 68f86dccce
commit 28b2019559
3 changed files with 6 additions and 28 deletions

View File

@ -86,7 +86,6 @@ public class stoplis001 {
this.out = out; this.out = out;
log = new Log(out, argHandler); log = new Log(out, argHandler);
Map<String,? extends com.sun.jdi.connect.Connector.Argument> cArgs1 = initConnector(argHandler.getTransportPort());
Map<String,? extends com.sun.jdi.connect.Connector.Argument> cArgs2 = initConnector(null); Map<String,? extends com.sun.jdi.connect.Connector.Argument> cArgs2 = initConnector(null);
if ((addr = startListen(cArgs2)) == null) { if ((addr = startListen(cArgs2)) == null) {
log.complain("FAILURE: unable to start listening the address " + log.complain("FAILURE: unable to start listening the address " +
@ -96,6 +95,12 @@ public class stoplis001 {
else else
log.display("TEST: start listening the address " + addr); log.display("TEST: start listening the address " + addr);
// argHandler.getTransportPort() returns a free port (different from the port allocated by startListen(cArgs2))
Map<String,? extends com.sun.jdi.connect.Connector.Argument> cArgs1 = initConnector(argHandler.getTransportPort());
log.display("cArgs1: " + cArgs1);
log.display("cArgs2: " + cArgs2);
/* Check that an Exception is thrown if ListeningConnector.stopListening /* Check that an Exception is thrown if ListeningConnector.stopListening
has been invoked with argument map different from the one given for has been invoked with argument map different from the one given for
a previous ListeningConnector.startListening() invocation */ a previous ListeningConnector.startListening() invocation */

View File

@ -1,24 +0,0 @@
#
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
exclusiveAccess.dirs=.

View File

@ -40,9 +40,6 @@
* argument map is the same with the one given for the previous * argument map is the same with the one given for the previous
* ListeningConnector.startListening() invocation. * ListeningConnector.startListening() invocation.
* *
* NOTE: this test is tagged "nonconcurrent" because it uses the default
* "javadebug" shmem file, as do some other tests.
*
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build nsk.jdi.ListeningConnector.stopListening.stoplis001 * @build nsk.jdi.ListeningConnector.stopListening.stoplis001