jdk/test/java/security/Provider/DefaultPKCS11.java
changeset 31268 63fcde3b5c3b
parent 11523 85131f3172a1
--- a/jdk/test/java/security/Provider/DefaultPKCS11.java	Thu Jun 25 08:30:34 2015 -0700
+++ b/jdk/test/java/security/Provider/DefaultPKCS11.java	Thu Jun 25 17:53:52 2015 +0000
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 2015, 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
@@ -23,9 +23,10 @@
 
 /**
  * @test
- * @bug 6260888
+ * @bug 6260888 8087157
  * @summary check SunPKCS11-Solaris is available on S10+ systems
  * @author Andreas Sterbenz
+ * @run main/othervm DefaultPKCS11
  */
 
 import java.util.*;
@@ -35,6 +36,8 @@
 public class DefaultPKCS11 {
 
     public static void main(String[] args) throws Exception {
+        System.setSecurityManager(new SecurityManager());
+
         String osName = System.getProperty("os.name", "(null)");
         String osVersion = System.getProperty("os.version", "(null)");
         System.out.println("Running on " + osName + " " + osVersion);