< prev index next >

test/java/net/URLConnection/6212146/TestDriver.java

Print this page
rev 17325 : 8181761: add explicit @build actions for jdk.test.lib classes in all :tier2 tests
Reviewed-by: duke


  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6212146
  27  * @summary URLConnection.connect() fails on JAR Entry it creates
  28  * file handler leak
  29  * @library /test/lib
  30  * @build jdk.test.lib.JDKToolFinder
  31  *        jdk.test.lib.process.ProcessTools




  32  *        Test
  33  * @run main/othervm TestDriver
  34  */
  35 
  36 import jdk.test.lib.JDKToolFinder;
  37 import jdk.test.lib.process.ProcessTools;
  38 
  39 import java.io.IOException;
  40 import java.nio.file.Files;
  41 import java.nio.file.Path;
  42 import java.nio.file.Paths;
  43 
  44 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  45 
  46 public class TestDriver {
  47     private static final String BASE_DIR = System.getProperty("user.dir")
  48             +  "/jars/";
  49     private static final String ARCHIVE_NAME = "test.jar";
  50     private static final String CMD_ULIMIT = "ulimit -n 300;";
  51 




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6212146
  27  * @summary URLConnection.connect() fails on JAR Entry it creates
  28  * file handler leak
  29  * @library /test/lib
  30  * @build jdk.test.lib.Utils
  31  *        jdk.test.lib.Asserts
  32  *        jdk.test.lib.JDKToolFinder
  33  *        jdk.test.lib.JDKToolLauncher
  34  *        jdk.test.lib.Platform
  35  *        jdk.test.lib.process.*
  36  *        Test
  37  * @run main/othervm TestDriver
  38  */
  39 
  40 import jdk.test.lib.JDKToolFinder;
  41 import jdk.test.lib.process.ProcessTools;
  42 
  43 import java.io.IOException;
  44 import java.nio.file.Files;
  45 import java.nio.file.Path;
  46 import java.nio.file.Paths;
  47 
  48 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  49 
  50 public class TestDriver {
  51     private static final String BASE_DIR = System.getProperty("user.dir")
  52             +  "/jars/";
  53     private static final String ARCHIVE_NAME = "test.jar";
  54     private static final String CMD_ULIMIT = "ulimit -n 300;";
  55 


< prev index next >