< prev index next >

test/compiler/compilercontrol/TestCompilerDirectivesCompatibilityFlag.java

Print this page
rev 9959 : 8148012: get rid of slash-dot-dot in @library directives
Reviewed-by:
rev 9474 : 8142967: [TESTBUG] Compiler control tests get NullPointerException
Summary: Fix incoorect build jtreg tags
Reviewed-by: iignatyev, neliasso
rev 9230 : 8141129: 3 compiler control tests fail on product builds
Summary: UnlockDiagnosticVMOptions should be placed before the PrintAssembly
Reviewed-by: kvn
rev 9148 : 8137167: JEP165: Compiler Control: Implementation task
Summary: Compiler Control JEP
Reviewed-by: roland, twisti, zmajo, simonis


   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 TestCompilerDirectivesCompatibilityFlag
  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
  37  *      -XX:+PrintAssembly -XX:+WhiteBoxAPI TestCompilerDirectivesCompatibilityFlag
  38  * @summary Test compiler control compatibility with compile command
  39  */
  40 
  41 import jdk.test.lib.dcmd.CommandExecutor;
  42 import jdk.test.lib.dcmd.JMXExecutor;
  43 
  44 import org.testng.annotations.Test;
  45 import org.testng.Assert;
  46 
  47 import sun.hotspot.WhiteBox;




   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 TestCompilerDirectivesCompatibilityFlag
  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
  37  *      -XX:+PrintAssembly -XX:+WhiteBoxAPI TestCompilerDirectivesCompatibilityFlag
  38  * @summary Test compiler control compatibility with compile command
  39  */
  40 
  41 import jdk.test.lib.dcmd.CommandExecutor;
  42 import jdk.test.lib.dcmd.JMXExecutor;
  43 
  44 import org.testng.annotations.Test;
  45 import org.testng.Assert;
  46 
  47 import sun.hotspot.WhiteBox;


< prev index next >