< prev index next >

test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/InheritedChannelTest.java

Print this page
rev 59383 : [mq]: final

*** 1,7 **** /* ! * Copyright (c) 2017, 2019, 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. --- 1,7 ---- /* ! * Copyright (c) 2017, 2020, 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.
*** 23,33 **** /* * @test * @bug 4673940 4930794 8211842 * @summary Unit tests for inetd feature ! * @requires (os.family == "linux" | os.family == "solaris" | os.family == "mac") * @library /test/lib * @build jdk.test.lib.Utils * jdk.test.lib.Asserts * jdk.test.lib.JDKToolFinder * jdk.test.lib.JDKToolLauncher --- 23,33 ---- /* * @test * @bug 4673940 4930794 8211842 * @summary Unit tests for inetd feature ! * @requires (os.family == "linux" | os.family == "mac") * @library /test/lib * @build jdk.test.lib.Utils * jdk.test.lib.Asserts * jdk.test.lib.JDKToolFinder * jdk.test.lib.JDKToolLauncher
*** 61,72 **** private static final String TEST_SRC = System.getProperty("test.src"); private static final String TEST_CLASSES = System.getProperty("test.class.path"); private static final Path POLICY_PASS = Paths.get(TEST_SRC, "java.policy.pass"); private static final Path POLICY_FAIL = Paths.get(TEST_SRC, "java.policy.fail"); ! private static final String OS = System.getProperty("os.name").toLowerCase(); ! private static final String OS_NAME = OS.startsWith("sunos") ? "solaris" : OS; private static final String ARCH = System.getProperty("os.arch"); private static final String OS_ARCH = ARCH.equals("i386") ? "i586" : ARCH; private static final Path libraryPath --- 61,71 ---- private static final String TEST_SRC = System.getProperty("test.src"); private static final String TEST_CLASSES = System.getProperty("test.class.path"); private static final Path POLICY_PASS = Paths.get(TEST_SRC, "java.policy.pass"); private static final Path POLICY_FAIL = Paths.get(TEST_SRC, "java.policy.fail"); ! private static final String OS_NAME = System.getProperty("os.name").toLowerCase(); private static final String ARCH = System.getProperty("os.arch"); private static final String OS_ARCH = ARCH.equals("i386") ? "i586" : ARCH; private static final Path libraryPath
< prev index next >