Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ private int runIt(String argv[], PrintStream out) {
this.out = out;
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);
if ((addr = startListen(cArgs2)) == null) {
log.complain("FAILURE: unable to start listening the address " +
Expand All @@ -93,6 +92,12 @@ private int runIt(String argv[], PrintStream out) {
else
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
has been invoked with argument map different from the one given for
a previous ListeningConnector.startListening() invocation */
Expand Down
Original file line number Diff line number Diff line change
@@ -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=.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
* argument map is the same with the one given for the previous
* ListeningConnector.startListening() invocation.
*
* NOTE: this test is tagged "nonconcurrent" because it uses the default
* "javadebug" shmem file, as do some other tests.
*
* @library /vmTestbase
* /test/lib
* @build nsk.jdi.ListeningConnector.stopListening.stoplis001
Expand Down