test/sanity/WBApi.java

Thu, 29 Nov 2012 11:30:04 -0800

author
katleman
date
Thu, 29 Nov 2012 11:30:04 -0800
changeset 4283
2f6dc76eb8e5
parent 3619
2d503de963b3
child 4637
1b0dc9f87e75
permissions
-rw-r--r--

Added tag jdk8-b66 for changeset 01684f7fee1b

     1 /*
     2  * @test WBApi
     3  * @summary verify that whitebox functions can be linked and executed
     4  * @run compile -J-XX:+UnlockDiagnosticVMOptions -J-XX:+WhiteBoxAPI WBApi.java
     5  * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI WBApi
     6  */
     8 import sun.hotspot.WhiteBox;
     9 public class WBApi {
    10     public static void main(String... args) {
    11         System.out.printf("args at: %x\n",WhiteBox.getWhiteBox().getObjectAddress(args));
    12     }
    13 }

mercurial