mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-15 16:09:44 +00:00
Merge
This commit is contained in:
commit
81cc6a5760
@ -325,7 +325,7 @@ public interface Path
|
||||
*
|
||||
* @return the resulting path or this path if it does not contain
|
||||
* redundant name elements; an empty path is returned if this path
|
||||
* does have a root component and all name elements are redundant
|
||||
* does not have a root component and all name elements are redundant
|
||||
*
|
||||
* @see #getParent
|
||||
* @see #toRealPath
|
||||
|
||||
@ -462,7 +462,7 @@ public abstract class BaseRowSet implements Serializable, Cloneable {
|
||||
* <code>false</code> that it is not. The default is <code>true</code>.
|
||||
* @serial
|
||||
*/
|
||||
private boolean escapeProcessing;
|
||||
private boolean escapeProcessing = true;
|
||||
|
||||
/**
|
||||
* A constant indicating the isolation level of the connection
|
||||
|
||||
@ -1116,7 +1116,7 @@ public interface Connection extends Wrapper, AutoCloseable {
|
||||
*
|
||||
* @return true if the connection is valid, false otherwise
|
||||
* @exception SQLException if the value supplied for <code>timeout</code>
|
||||
* is less then 0
|
||||
* is less than 0
|
||||
* @since 1.6
|
||||
*
|
||||
* @see java.sql.DatabaseMetaData#getClientInfoProperties
|
||||
|
||||
@ -206,11 +206,13 @@ class ServerImpl implements TimeSource {
|
||||
if (timer1Enabled) {
|
||||
timer1.cancel();
|
||||
}
|
||||
try {
|
||||
dispatcherThread.join();
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
logger.log(Level.FINER, "ServerImpl.stop: ", e);
|
||||
if (dispatcherThread != null) {
|
||||
try {
|
||||
dispatcherThread.join();
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
logger.log(Level.FINER, "ServerImpl.stop: ", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
42
jdk/test/com/sun/net/httpserver/StopNoStartTest.java
Normal file
42
jdk/test/com/sun/net/httpserver/StopNoStartTest.java
Normal file
@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Copyright (c) 2014 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @bug 8066130
|
||||
* @summary Test HttpServer stop method invocation before a start has been called
|
||||
*/
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import com.sun.net.httpserver.HttpServer;
|
||||
|
||||
|
||||
public class StopNoStartTest {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
||||
InetSocketAddress serverAddr = new InetSocketAddress(0);
|
||||
HttpServer server = HttpServer.create(serverAddr, 0);
|
||||
server.stop(0);
|
||||
}
|
||||
}
|
||||
@ -186,11 +186,11 @@ public class BaseRowSetTests extends BaseTest {
|
||||
}
|
||||
|
||||
/*
|
||||
* Validate that getEscapeProcessing() returns false by default
|
||||
* Validate that getEscapeProcessing() returns true by default
|
||||
*/
|
||||
@Test
|
||||
public void test08() throws Exception {
|
||||
assertFalse(brs.getEscapeProcessing());
|
||||
assertTrue(brs.getEscapeProcessing());
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user