< prev index next >

test/java/net/URLClassLoader/getresourceasstream/TestDriver.java

Print this page
rev 17272 : 8181391: remove explicit @build actions for the top level testlibary classes
Reviewed-by: duke


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 5103449
  27  * @summary REGRESSION: getResourceAsStream is broken in JDK1.5.0-rc
  28  * @library /test/lib
  29  * @build jdk.test.lib.JDKToolFinder
  30  *        jdk.test.lib.process.ProcessTools
  31  *        Test
  32  * @run main/othervm TestDriver
  33  */
  34 
  35 import jdk.test.lib.JDKToolFinder;
  36 import jdk.test.lib.process.ProcessTools;
  37 
  38 import java.io.IOException;
  39 import java.nio.file.Files;
  40 import java.nio.file.Path;
  41 import java.nio.file.Paths;
  42 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  43 
  44 public class TestDriver {
  45     private static final String ARCHIVE_NAME = "test.jar";
  46     private static final String TEST_NAME = "Test";
  47     private static final String POLICY_FILE = "policy";
  48     public static void main(String[] args)
  49             throws Throwable {
  50 
  51         Path userDir = Paths.get(System.getProperty("user.dir"));




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 5103449
  27  * @summary REGRESSION: getResourceAsStream is broken in JDK1.5.0-rc
  28  * @library /test/lib



  29  * @run main/othervm TestDriver
  30  */
  31 
  32 import jdk.test.lib.JDKToolFinder;
  33 import jdk.test.lib.process.ProcessTools;
  34 
  35 import java.io.IOException;
  36 import java.nio.file.Files;
  37 import java.nio.file.Path;
  38 import java.nio.file.Paths;
  39 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  40 
  41 public class TestDriver {
  42     private static final String ARCHIVE_NAME = "test.jar";
  43     private static final String TEST_NAME = "Test";
  44     private static final String POLICY_FILE = "policy";
  45     public static void main(String[] args)
  46             throws Throwable {
  47 
  48         Path userDir = Paths.get(System.getProperty("user.dir"));


< prev index next >