test/jdk/java/net/SocketInputStream/SocketClosedException.java
changeset 49431 5812849b5027
parent 47216 71c04702a3d5
child 54770 62b6e7587b1f
equal deleted inserted replaced
49430:e376090dc07e 49431:5812849b5027
     1 /*
     1 /*
     2  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    24 /*
    24 /*
    25  * @test
    25  * @test
    26  * @bug 4681556
    26  * @bug 4681556
    27  * @summary Wrong text if a read is performed on a socket after it
    27  * @summary Wrong text if a read is performed on a socket after it
    28  *      has been closed
    28  *      has been closed
       
    29  * @run main SocketClosedException
       
    30  * @run main/othervm -Djava.net.preferIPv4Stack=true SocketClosedException
    29  */
    31  */
    30 
    32 
    31 import java.io.*;
    33 import java.io.*;
    32 import java.net.*;
    34 import java.net.*;
    33 
    35