< prev index next >

test/com/sun/jdi/ExclusiveBind.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4531526
  26  * @summary Test that more than one debuggee cannot bind to same port
  27  *          at the same time.
  28  * @library /lib/testlibrary
  29  *

  30  * @modules java.management
  31  *          jdk.jdi

  32  * @build jdk.testlibrary.* VMConnection ExclusiveBind HelloWorld
  33  * @run driver ExclusiveBind
  34  */
  35 import java.net.ServerSocket;
  36 import com.sun.jdi.Bootstrap;
  37 import com.sun.jdi.VirtualMachine;
  38 import com.sun.jdi.connect.Connector;
  39 import com.sun.jdi.connect.AttachingConnector;
  40 
  41 import java.util.ArrayList;
  42 import java.util.Map;
  43 import java.util.List;
  44 import java.util.Iterator;
  45 import java.util.concurrent.TimeUnit;
  46 
  47 import jdk.testlibrary.ProcessTools;
  48 import jdk.testlibrary.Utils;
  49 
  50 public class ExclusiveBind {
  51     /*




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4531526
  26  * @summary Test that more than one debuggee cannot bind to same port
  27  *          at the same time.

  28  *
  29  * @library /lib/testlibrary
  30  * @modules java.management
  31  *          jdk.jdi
  32  *
  33  * @build jdk.testlibrary.* VMConnection ExclusiveBind HelloWorld
  34  * @run driver ExclusiveBind
  35  */
  36 import java.net.ServerSocket;
  37 import com.sun.jdi.Bootstrap;
  38 import com.sun.jdi.VirtualMachine;
  39 import com.sun.jdi.connect.Connector;
  40 import com.sun.jdi.connect.AttachingConnector;
  41 
  42 import java.util.ArrayList;
  43 import java.util.Map;
  44 import java.util.List;
  45 import java.util.Iterator;
  46 import java.util.concurrent.TimeUnit;
  47 
  48 import jdk.testlibrary.ProcessTools;
  49 import jdk.testlibrary.Utils;
  50 
  51 public class ExclusiveBind {
  52     /*


< prev index next >