< prev index next >

test/hotspot/jtreg/runtime/XCheckJniJsig/XCheckJSig.java

Print this page
rev 59383 : [mq]: final


  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 7051189 8023393
  27  * @summary Need to suppress info message if -Xcheck:jni is used with libjsig.so
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  *          java.management
  31  * @requires os.family == "solaris" | os.family == "linux" | os.family == "mac"
  32  * @run driver XCheckJSig
  33  */
  34 
  35 import java.io.File;
  36 import java.util.Map;
  37 import jdk.test.lib.process.ProcessTools;
  38 import jdk.test.lib.process.OutputAnalyzer;
  39 import jdk.test.lib.Platform;
  40 
  41 public class XCheckJSig {
  42     public static void main(String args[]) throws Throwable {
  43 
  44         System.out.println("Regression test for bugs 7051189 and 8023393");
  45 
  46         String jdk_path = System.getProperty("test.jdk");
  47         String libjsig;
  48         String env_var;
  49         if (Platform.isOSX()) {
  50             env_var = "DYLD_INSERT_LIBRARIES";
  51             libjsig = jdk_path + "/lib/libjsig.dylib"; // jre location




  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 7051189 8023393
  27  * @summary Need to suppress info message if -Xcheck:jni is used with libjsig.so
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  *          java.management
  31  * @requires os.family == "linux" | os.family == "mac"
  32  * @run driver XCheckJSig
  33  */
  34 
  35 import java.io.File;
  36 import java.util.Map;
  37 import jdk.test.lib.process.ProcessTools;
  38 import jdk.test.lib.process.OutputAnalyzer;
  39 import jdk.test.lib.Platform;
  40 
  41 public class XCheckJSig {
  42     public static void main(String args[]) throws Throwable {
  43 
  44         System.out.println("Regression test for bugs 7051189 and 8023393");
  45 
  46         String jdk_path = System.getProperty("test.jdk");
  47         String libjsig;
  48         String env_var;
  49         if (Platform.isOSX()) {
  50             env_var = "DYLD_INSERT_LIBRARIES";
  51             libjsig = jdk_path + "/lib/libjsig.dylib"; // jre location


< prev index next >