< prev index next >

test/java/lang/invoke/RevealDirectTest.java

Print this page




   7  * published by the Free Software Foundation.
   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  * @summary verify Lookup.revealDirect on a variety of input handles

  27  * @compile -XDignore.symbol.file RevealDirectTest.java
  28  * @run junit/othervm -ea -esa test.java.lang.invoke.RevealDirectTest
  29  *
  30  * @test
  31  * @summary verify Lookup.revealDirect on a variety of input handles, with security manager
  32  * @run main/othervm/policy=jtreg.security.policy/secure=java.lang.SecurityManager -ea -esa test.java.lang.invoke.RevealDirectTest
  33  */
  34 
  35 /* To run manually:
  36  * $ $JAVA8X_HOME/bin/javac -cp $JUNIT4_JAR -d ../../../.. -XDignore.symbol.file RevealDirectTest.java
  37  * $ $JAVA8X_HOME/bin/java  -cp $JUNIT4_JAR:../../../.. -ea -esa org.junit.runner.JUnitCore test.java.lang.invoke.RevealDirectTest
  38  * $ $JAVA8X_HOME/bin/java  -cp $JUNIT4_JAR:../../../.. -ea -esa    -Djava.security.manager test.java.lang.invoke.RevealDirectTest
  39  */
  40 
  41 package test.java.lang.invoke;
  42 
  43 import java.lang.reflect.*;
  44 import java.lang.invoke.*;
  45 import static java.lang.invoke.MethodHandles.*;
  46 import static java.lang.invoke.MethodType.*;




   7  * published by the Free Software Foundation.
   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  * @summary verify Lookup.revealDirect on a variety of input handles
  27  * @modules java.base/sun.reflect
  28  * @compile -XDignore.symbol.file RevealDirectTest.java
  29  * @run junit/othervm -ea -esa test.java.lang.invoke.RevealDirectTest
  30  *
  31  * @test
  32  * @summary verify Lookup.revealDirect on a variety of input handles, with security manager
  33  * @run main/othervm/policy=jtreg.security.policy/secure=java.lang.SecurityManager -ea -esa test.java.lang.invoke.RevealDirectTest
  34  */
  35 
  36 /* To run manually:
  37  * $ $JAVA8X_HOME/bin/javac -cp $JUNIT4_JAR -d ../../../.. -XDignore.symbol.file RevealDirectTest.java
  38  * $ $JAVA8X_HOME/bin/java  -cp $JUNIT4_JAR:../../../.. -ea -esa org.junit.runner.JUnitCore test.java.lang.invoke.RevealDirectTest
  39  * $ $JAVA8X_HOME/bin/java  -cp $JUNIT4_JAR:../../../.. -ea -esa    -Djava.security.manager test.java.lang.invoke.RevealDirectTest
  40  */
  41 
  42 package test.java.lang.invoke;
  43 
  44 import java.lang.reflect.*;
  45 import java.lang.invoke.*;
  46 import static java.lang.invoke.MethodHandles.*;
  47 import static java.lang.invoke.MethodType.*;


< prev index next >