< prev index next >

test/java/net/URLClassLoader/sealing/CheckSealedTest.java

Print this page
rev 17325 : 8181761: add explicit @build actions for jdk.test.lib classes in all :tier2 tests
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 4244970
  27  * @summary Test to see if sealing violation is detected correctly
  28  * @library /test/lib
  29  * @build jdk.test.lib.JDKToolFinder
  30  *        jdk.test.lib.process.OutputAnalyzer




  31  * @run main CheckSealedTest
  32  */
  33 
  34 import jdk.test.lib.JDKToolFinder;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 import java.io.File;
  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 java.util.List;
  43 
  44 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  45 
  46 public class CheckSealedTest {
  47     private static final String ARCHIVE_NAME = "b.jar";
  48     private static final String TEST_NAME = "CheckSealed";
  49     public static void main(String[] args)
  50             throws Throwable {




   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 4244970
  27  * @summary Test to see if sealing violation is detected correctly
  28  * @library /test/lib
  29  * @build jdk.test.lib.Utils
  30  *        jdk.test.lib.Asserts
  31  *        jdk.test.lib.JDKToolFinder
  32  *        jdk.test.lib.JDKToolLauncher
  33  *        jdk.test.lib.Platform
  34  *        jdk.test.lib.process.*
  35  * @run main CheckSealedTest
  36  */
  37 
  38 import jdk.test.lib.JDKToolFinder;
  39 import jdk.test.lib.process.ProcessTools;
  40 
  41 import java.io.File;
  42 import java.io.IOException;
  43 import java.nio.file.Files;
  44 import java.nio.file.Path;
  45 import java.nio.file.Paths;
  46 import java.util.List;
  47 
  48 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  49 
  50 public class CheckSealedTest {
  51     private static final String ARCHIVE_NAME = "b.jar";
  52     private static final String TEST_NAME = "CheckSealed";
  53     public static void main(String[] args)
  54             throws Throwable {


< prev index next >