test/java/net/URLClassLoader/closetest/GetResourceAsStream.java

Print this page
rev 9529 : 8034960: Serviceability tests using @library failing with java.lang.NoClassDefFoundError


   8  *
   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 6899919
  27  * @library /lib/testlibrary
  28  * @build jdk.testlibrary.FileUtils
  29  * @run shell build2.sh
  30  * @run main/othervm GetResourceAsStream
  31  */
  32 
  33 import java.io.*;
  34 import java.net.*;
  35 
  36 public class GetResourceAsStream extends Common {
  37 
  38 /*
  39  * We simply test various scenarios with class/resource files
  40  * and make sure the files can be deleted after closing
  41  * the loader. Therefore, the test will only really be verified
  42  * on Windows. It will still run correctly on other platforms
  43  */
  44     public static void main (String args[]) throws Exception {
  45 
  46         String workdir = System.getProperty("test.classes");
  47         if (workdir == null) {
  48             workdir = args[0];




   8  *
   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 6899919
  27  * @library /lib/testlibrary
  28  * @build jdk.testlibrary.*
  29  * @run shell build2.sh
  30  * @run main/othervm GetResourceAsStream
  31  */
  32 
  33 import java.io.*;
  34 import java.net.*;
  35 
  36 public class GetResourceAsStream extends Common {
  37 
  38 /*
  39  * We simply test various scenarios with class/resource files
  40  * and make sure the files can be deleted after closing
  41  * the loader. Therefore, the test will only really be verified
  42  * on Windows. It will still run correctly on other platforms
  43  */
  44     public static void main (String args[]) throws Exception {
  45 
  46         String workdir = System.getProperty("test.classes");
  47         if (workdir == null) {
  48             workdir = args[0];