< prev index next >

test/compiler/rtm/cli/RTMLockingAwareTest.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   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 import java.util.List;
  26 import java.util.LinkedList;
  27 
  28 import jdk.test.lib.ExitCode;
  29 import jdk.test.lib.cli.*;
  30 import jdk.test.lib.cli.predicate.AndPredicate;
  31 import compiler.testlibrary.rtm.predicate.SupportedCPU;
  32 import compiler.testlibrary.rtm.predicate.SupportedVM;



  33 



  34 /**
  35  * Base for all RTM-related CLI tests on options whose processing depends
  36  * on UseRTMLocking value.
  37  *
  38  * Since UseRTMLocking option could be used when both CPU and VM supports RTM
  39  * locking, this test will be skipped on all unsupported configurations.
  40  */
  41 public abstract class RTMLockingAwareTest
  42         extends RTMGenericCommandLineOptionTest {
  43     protected final String warningMessage;
  44     protected final String[] correctValues;
  45     protected final String[] incorrectValues;
  46     /**
  47      * Constructs new test for option {@code optionName} that should be executed
  48      * only on CPU with RTM support.
  49      * Test will be executed using set of correct values from
  50      * {@code correctValues} and set of incorrect values from
  51      * {@code incorrectValues}.
  52      *
  53      * @param optionName name of option to be tested




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   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 package compiler.rtm.cli;

  26 



  27 import compiler.testlibrary.rtm.predicate.SupportedCPU;
  28 import compiler.testlibrary.rtm.predicate.SupportedVM;
  29 import jdk.test.lib.ExitCode;
  30 import jdk.test.lib.cli.CommandLineOptionTest;
  31 import jdk.test.lib.cli.predicate.AndPredicate;
  32 
  33 import java.util.LinkedList;
  34 import java.util.List;
  35 
  36 /**
  37  * Base for all RTM-related CLI tests on options whose processing depends
  38  * on UseRTMLocking value.
  39  *
  40  * Since UseRTMLocking option could be used when both CPU and VM supports RTM
  41  * locking, this test will be skipped on all unsupported configurations.
  42  */
  43 public abstract class RTMLockingAwareTest
  44         extends RTMGenericCommandLineOptionTest {
  45     protected final String warningMessage;
  46     protected final String[] correctValues;
  47     protected final String[] incorrectValues;
  48     /**
  49      * Constructs new test for option {@code optionName} that should be executed
  50      * only on CPU with RTM support.
  51      * Test will be executed using set of correct values from
  52      * {@code correctValues} and set of incorrect values from
  53      * {@code incorrectValues}.
  54      *
  55      * @param optionName name of option to be tested


< prev index next >