aboutsummaryrefslogtreecommitdiff
path: root/test/jdk
diff options
context:
space:
mode:
authormichaelm <none@none>2014-11-04 17:08:53 +0000
committermichaelm <none@none>2014-11-04 17:08:53 +0000
commit215261c73c5563a4719dd8c5e2f8dc421fe543bd (patch)
treececa3fcbe15b6a39f55992360aaf88e4e99b63c0 /test/jdk
parentf761a6968182a561483ff0cade5c79982697228d (diff)
8062744: jdk.net.Sockets.setOption/getOption does not support IP_TOS
Reviewed-by: chegar, alanb
Diffstat (limited to 'test/jdk')
-rw-r--r--test/jdk/net/Sockets/SupportedOptions.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/jdk/net/Sockets/SupportedOptions.java b/test/jdk/net/Sockets/SupportedOptions.java
new file mode 100644
index 000000000..cf1d0ceea
--- /dev/null
+++ b/test/jdk/net/Sockets/SupportedOptions.java
@@ -0,0 +1,45 @@
+/*
+ * 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 8062744
+ * @run main SupportedOptions
+ */
+
+import java.net.*;
+import java.io.IOException;
+import jdk.net.*;
+
+public class SupportedOptions {
+
+ public static void main(String[] args) throws Exception {
+ if (!Sockets.supportedOptions(ServerSocket.class)
+ .contains(StandardSocketOptions.IP_TOS)) {
+ throw new RuntimeException("Test failed");
+ }
+ // Now set the option
+ ServerSocket ss = new ServerSocket();
+ Sockets.setOption(ss, java.net.StandardSocketOptions.IP_TOS, 128);
+ }
+}