< prev index next >

test/compiler/compilercontrol/TestCompilerDirectivesCompatibilityBase.java

Print this page
rev 9435 : imported patch WB-build
rev 9148 : 8137167: JEP165: Compiler Control: Implementation task
Summary: Compiler Control JEP
Reviewed-by: roland, twisti, zmajo, simonis


  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 TestCompilerDirectivesCompatibilityBase
  26  * @bug 8137167
  27  * @library /testlibrary /../../test/lib
  28  * @modules java.base/sun.misc
  29  *          java.compiler
  30  *          java.management
  31  * @build jdk.test.lib.*
  32  * @build jdk.test.lib.dcmd.*
  33  * @build sun.hotspot.WhiteBox.*
  34  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  35  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run testng/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestCompilerDirectivesCompatibilityBase
  37  * @summary Test compiler control compatibility with compile command
  38  */
  39 
  40 import jdk.test.lib.dcmd.CommandExecutor;
  41 import jdk.test.lib.dcmd.JMXExecutor;
  42 
  43 import org.testng.annotations.Test;
  44 import org.testng.Assert;
  45 
  46 import sun.hotspot.WhiteBox;
  47 
  48 import java.io.BufferedReader;
  49 import java.io.File;
  50 import java.io.StringReader;
  51 import java.lang.reflect.Method;
  52 import java.util.Objects;
  53 




  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 TestCompilerDirectivesCompatibilityBase
  26  * @bug 8137167
  27  * @library /testlibrary /../../test/lib
  28  * @modules java.base/sun.misc
  29  *          java.compiler
  30  *          java.management
  31  * @build jdk.test.lib.*
  32  * @build jdk.test.lib.dcmd.*
  33  * @build sun.hotspot.WhiteBox
  34  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  35  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run testng/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI TestCompilerDirectivesCompatibilityBase
  37  * @summary Test compiler control compatibility with compile command
  38  */
  39 
  40 import jdk.test.lib.dcmd.CommandExecutor;
  41 import jdk.test.lib.dcmd.JMXExecutor;
  42 
  43 import org.testng.annotations.Test;
  44 import org.testng.Assert;
  45 
  46 import sun.hotspot.WhiteBox;
  47 
  48 import java.io.BufferedReader;
  49 import java.io.File;
  50 import java.io.StringReader;
  51 import java.lang.reflect.Method;
  52 import java.util.Objects;
  53 


< prev index next >