< prev index next >

test/compiler/rtm/cli/RTMLockingAwareTest.java

Print this page
rev 11916 : 8165235: [TESTBUG] RTM tests must check OS version
Summary: Also change enabling RTM on Aix to OS version 7.2.
Reviewed-by: simonis


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


  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
  56      * @param isBoolean {@code true} if tested option is binary
  57      * @param isExperimental {@code true} if tested option is experimental
  58      * @param defaultValue default value of tested option
  59      * @param correctValues array with correct values, that should not emit
  60      *                      {@code warningMessage} to VM output
  61      * @param incorrectValues array with incorrect values, that should emit
  62      *                        {@code waningMessage} to VM output
  63      * @param warningMessage warning message associated with tested option
  64      */
  65     protected RTMLockingAwareTest(String optionName, boolean isBoolean,
  66             boolean isExperimental, String defaultValue,
  67             String[] correctValues, String[] incorrectValues,
  68             String warningMessage) {
  69         super(new AndPredicate(new SupportedCPU(), new SupportedVM()),
  70                 optionName, isBoolean, isExperimental, defaultValue);
  71         this.correctValues = correctValues;
  72         this.incorrectValues = incorrectValues;
  73         this.warningMessage = warningMessage;
  74     }
  75 
  76     @Override
  77     protected void verifyJVMStartup() throws Throwable {
  78         // Run generic sanity checks
  79         super.verifyJVMStartup();
  80         // Verify how option values will be processed depending on
  81         // UseRTMLocking value.
  82         if (correctValues != null) {
  83             for (String correctValue : correctValues) {
  84                 // For correct values it is expected to see no warnings
  85                 // regardless to UseRTMLocking
  86                 verifyStartupWarning(correctValue, true, false);
  87                 verifyStartupWarning(correctValue, false, false);
  88             }
  89         }




   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.SupportedOS;
  29 import compiler.testlibrary.rtm.predicate.SupportedVM;
  30 import jdk.test.lib.process.ExitCode;
  31 import jdk.test.lib.cli.CommandLineOptionTest;
  32 import jdk.test.lib.cli.predicate.AndPredicate;
  33 
  34 import java.util.LinkedList;
  35 import java.util.List;
  36 
  37 /**
  38  * Base for all RTM-related CLI tests on options whose processing depends
  39  * on UseRTMLocking value.
  40  *
  41  * Since UseRTMLocking option could be used when both CPU and VM supports RTM
  42  * locking, this test will be skipped on all unsupported configurations.
  43  */
  44 public abstract class RTMLockingAwareTest
  45         extends RTMGenericCommandLineOptionTest {
  46     protected final String warningMessage;
  47     protected final String[] correctValues;
  48     protected final String[] incorrectValues;


  50      * Constructs new test for option {@code optionName} that should be executed
  51      * only on CPU with RTM support.
  52      * Test will be executed using set of correct values from
  53      * {@code correctValues} and set of incorrect values from
  54      * {@code incorrectValues}.
  55      *
  56      * @param optionName name of option to be tested
  57      * @param isBoolean {@code true} if tested option is binary
  58      * @param isExperimental {@code true} if tested option is experimental
  59      * @param defaultValue default value of tested option
  60      * @param correctValues array with correct values, that should not emit
  61      *                      {@code warningMessage} to VM output
  62      * @param incorrectValues array with incorrect values, that should emit
  63      *                        {@code waningMessage} to VM output
  64      * @param warningMessage warning message associated with tested option
  65      */
  66     protected RTMLockingAwareTest(String optionName, boolean isBoolean,
  67             boolean isExperimental, String defaultValue,
  68             String[] correctValues, String[] incorrectValues,
  69             String warningMessage) {
  70         super(new AndPredicate(new SupportedCPU(), new SupportedOS(), new SupportedVM()),
  71                 optionName, isBoolean, isExperimental, defaultValue);
  72         this.correctValues = correctValues;
  73         this.incorrectValues = incorrectValues;
  74         this.warningMessage = warningMessage;
  75     }
  76 
  77     @Override
  78     protected void verifyJVMStartup() throws Throwable {
  79         // Run generic sanity checks
  80         super.verifyJVMStartup();
  81         // Verify how option values will be processed depending on
  82         // UseRTMLocking value.
  83         if (correctValues != null) {
  84             for (String correctValue : correctValues) {
  85                 // For correct values it is expected to see no warnings
  86                 // regardless to UseRTMLocking
  87                 verifyStartupWarning(correctValue, true, false);
  88                 verifyStartupWarning(correctValue, false, false);
  89             }
  90         }


< prev index next >