< prev index next >

test/compiler/rtm/cli/RTMLockingAwareTest.java

Print this page




   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




   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.process.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


< prev index next >