jdk/test/com/sun/jdi/BadHandshakeTest.java
changeset 22295 f140aab86aed
parent 21660 3de47f8320ef
child 24509 5d02a6d25f78
equal deleted inserted replaced
22294:1e3a7c70240c 22295:f140aab86aed
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2014, 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.
    83                 //    Listening for transport dt_socket at address: xxxxx
    83                 //    Listening for transport dt_socket at address: xxxxx
    84                 // which shows the debuggee is ready to accept connections.
    84                 // which shows the debuggee is ready to accept connections.
    85                 success.set(line.contains("Listening for transport dt_socket at address:"));
    85                 success.set(line.contains("Listening for transport dt_socket at address:"));
    86                 return true;
    86                 return true;
    87             },
    87             },
    88             1500,
    88             Integer.MAX_VALUE,
    89             TimeUnit.MILLISECONDS
    89             TimeUnit.MILLISECONDS
    90         );
    90         );
    91 
    91 
    92         return success.get() ? p : null;
    92         return success.get() ? p : null;
    93     }
    93     }