hotspot/test/runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java
author ddmitriev
Sat, 12 Dec 2015 21:23:20 +0300
changeset 35074 4ac430acedd7
parent 34675 a6bb3ba532e1
child 35462 a1bed49c67a8
permissions -rw-r--r--
8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases Reviewed-by: gtriantafill, stsmirno, ctornqvi, gziemski
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31372
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     1
/*
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     4
 *
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     8
 *
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    13
 * accompanied this code).
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    14
 *
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    18
 *
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    21
 * questions.
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    22
 */
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    23
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    24
/*
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    25
 * @test
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    26
 * @summary Test VM Options with ranges
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    27
 * @library /testlibrary /runtime/CommandLine/OptionsValidation/common
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    28
 * @modules java.base/sun.misc
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    29
 *          java.management
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    30
 *          jdk.attach
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    31
 *          jdk.management/sun.tools.attach
34661
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
    32
 * @run main/othervm/timeout=900 TestOptionsWithRanges
31372
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    33
 */
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    34
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    35
import java.util.ArrayList;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    36
import java.util.List;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    37
import java.util.Map;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    38
import jdk.test.lib.Asserts;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    39
import optionsvalidation.JVMOption;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    40
import optionsvalidation.JVMOptionsUtils;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    41
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    42
public class TestOptionsWithRanges {
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    43
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    44
    private static Map<String, JVMOption> allOptionsAsMap;
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    45
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    46
    private static void excludeTestMaxRange(String optionName) {
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    47
        JVMOption option = allOptionsAsMap.get(optionName);
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    48
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    49
        if (option != null) {
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    50
            option.excludeTestMaxRange();
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    51
        }
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    52
    }
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    53
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    54
    private static void excludeTestMinRange(String optionName) {
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    55
        JVMOption option = allOptionsAsMap.get(optionName);
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    56
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    57
        if (option != null) {
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    58
            option.excludeTestMinRange();
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    59
        }
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    60
    }
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    61
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    62
    private static void excludeTestRange(String optionName) {
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    63
        allOptionsAsMap.remove(optionName);
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    64
    }
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    65
35074
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    66
    private static void setAllowedExitCodes(String optionName, Integer... allowedExitCodes) {
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    67
        JVMOption option = allOptionsAsMap.get(optionName);
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    68
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    69
        if (option != null) {
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    70
            option.setAllowedExitCodes(allowedExitCodes);
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    71
        }
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    72
    }
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    73
31372
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    74
    public static void main(String[] args) throws Exception {
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    75
        int failedTests;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    76
        List<JVMOption> allOptions;
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    77
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    78
        allOptionsAsMap = JVMOptionsUtils.getOptionsWithRangeAsMap();
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    79
35074
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    80
        /* Shared flags can cause JVM to exit with error code 2 */
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    81
        setAllowedExitCodes("SharedReadWriteSize", 2);
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    82
        setAllowedExitCodes("SharedReadOnlySize", 2);
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    83
        setAllowedExitCodes("SharedMiscDataSize", 2);
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    84
        setAllowedExitCodes("SharedMiscCodeSize", 2);
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    85
31372
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    86
        /*
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    87
         * Remove CICompilerCount from testing because currently it can hang system
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    88
         */
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    89
        excludeTestMaxRange("CICompilerCount");
31372
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
    90
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 31372
diff changeset
    91
        /*
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
    92
         * JDK-8136766
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
    93
         * Temporarily remove ThreadStackSize from testing because Windows can set it to 0
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
    94
         * (for default OS size) but other platforms insist it must be greater than 0
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
    95
        */
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
    96
        excludeTestRange("ThreadStackSize");
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
    97
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
    98
        /*
35074
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
    99
         * JDK-8143958
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
   100
         * Temporarily exclude testing of max range for Shared* flags
34242
e530decd7c63 8138983: Runtime: implement ranges for Shared*** flags
gziemski
parents: 33610
diff changeset
   101
         */
35074
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
   102
        excludeTestMaxRange("SharedReadWriteSize");
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
   103
        excludeTestMaxRange("SharedReadOnlySize");
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
   104
        excludeTestMaxRange("SharedMiscDataSize");
4ac430acedd7 8142874: [TESTBUG] OptionsValidation testing framework needs to handle VM error codes in some cases
ddmitriev
parents: 34675
diff changeset
   105
        excludeTestMaxRange("SharedMiscCodeSize");
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
   106
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
   107
        /*
34178
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   108
         * Remove the flag controlling the size of the stack because the
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   109
         * flag has direct influence on the physical memory usage of
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   110
         * the VM.
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   111
         */
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   112
        allOptionsAsMap.remove("CompilerThreadStackSize");
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   113
e30e720da91b 8140327: segfault on solaris-amd64 with "-XX:CompilerThreadStackSize=1" option
zmajo
parents: 33230
diff changeset
   114
        /*
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
   115
         * Exclude MallocMaxTestWords as it is expected to exit VM at small values (>=0)
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
   116
         */
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   117
        excludeTestMinRange("MallocMaxTestWords");
33222
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
   118
e0a340f4ab6e 8078556: Runtime: implement ranges (optionally constraints) for those flags that have them missing.
gziemski
parents: 33144
diff changeset
   119
        /*
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 31372
diff changeset
   120
         * Exclude below options as their maximum value would consume too much memory
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 31372
diff changeset
   121
         * and would affect other tests that run in parallel.
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 31372
diff changeset
   122
         */
34661
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   123
        excludeTestMaxRange("ConcGCThreads");
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   124
        excludeTestMaxRange("G1ConcRefinementThreads");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   125
        excludeTestMaxRange("G1RSetRegionEntries");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   126
        excludeTestMaxRange("G1RSetSparseRegionEntries");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   127
        excludeTestMaxRange("G1UpdateBufferSize");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   128
        excludeTestMaxRange("InitialBootClassLoaderMetaspaceSize");
34661
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   129
        excludeTestMaxRange("InitialHeapSize");
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   130
        excludeTestMaxRange("MaxHeapSize");
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   131
        excludeTestMaxRange("MaxRAM");
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   132
        excludeTestMaxRange("NewSize");
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   133
        excludeTestMaxRange("OldSize");
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   134
        excludeTestMaxRange("ParallelGCThreads");
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   135
9a1d11d88ea0 8142341: GC: current flags need ranges to be implemented
sangheki
parents: 34317
diff changeset
   136
        excludeTestMaxRange("VMThreadStackSize");
33144
c56850e328fc 8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents: 31372
diff changeset
   137
33198
dlong
parents: 33144 33163
diff changeset
   138
        /*
34675
a6bb3ba532e1 8145027: Exclude NUMAInterleaveGranularity from TestOptionsWithRanges.java
jmasa
parents: 34661
diff changeset
   139
         * JDK-8145027
a6bb3ba532e1 8145027: Exclude NUMAInterleaveGranularity from TestOptionsWithRanges.java
jmasa
parents: 34661
diff changeset
   140
         * Temporarily exclude as current range/constraint is not enough for some option combinations.
a6bb3ba532e1 8145027: Exclude NUMAInterleaveGranularity from TestOptionsWithRanges.java
jmasa
parents: 34661
diff changeset
   141
         */
a6bb3ba532e1 8145027: Exclude NUMAInterleaveGranularity from TestOptionsWithRanges.java
jmasa
parents: 34661
diff changeset
   142
        excludeTestRange("NUMAInterleaveGranularity");
a6bb3ba532e1 8145027: Exclude NUMAInterleaveGranularity from TestOptionsWithRanges.java
jmasa
parents: 34661
diff changeset
   143
a6bb3ba532e1 8145027: Exclude NUMAInterleaveGranularity from TestOptionsWithRanges.java
jmasa
parents: 34661
diff changeset
   144
        /*
33163
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   145
         * Remove parameters controlling the code cache. As these
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   146
         * parameters have implications on the physical memory
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   147
         * reserved by the VM, setting them to large values may hang
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   148
         * the system and/or may cause concurrently executed tests to
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   149
         * fail. These parameters are rigorously checked when the code
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   150
         * cache is initialized (see
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   151
         * hotspot/src/shared/vm/code/codeCache.cpp), therefore
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   152
         * omitting testing for them does not pose a problem.
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   153
         */
34275
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   154
        excludeTestMaxRange("InitialCodeCacheSize");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   155
        excludeTestMaxRange("CodeCacheMinimumUseSpace");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   156
        excludeTestMaxRange("ReservedCodeCacheSize");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   157
        excludeTestMaxRange("NonProfiledCodeHeapSize");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   158
        excludeTestMaxRange("ProfiledCodeHeapSize");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   159
        excludeTestMaxRange("NonNMethodCodeHeapSize");
9b1771bfd6cf 8143038: [TESTBUG] TestOptionsWithRanges: allow excluding only a subset of tested values specified for a flag
ddmitriev
parents: 34242
diff changeset
   160
        excludeTestMaxRange("CodeCacheExpansionSize");
33163
9e128b399e48 8078554: Compiler: implement ranges (optionally constraints) for those flags that have them missing
zmajo
parents: 31372
diff changeset
   161
31372
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   162
        allOptions = new ArrayList<>(allOptionsAsMap.values());
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   163
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   164
        Asserts.assertGT(allOptions.size(), 0, "Options with ranges not found!");
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   165
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   166
        System.out.println("Parsed " + allOptions.size() + " options with ranges. Start test!");
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   167
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   168
        failedTests = JVMOptionsUtils.runCommandLineTests(allOptions);
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   169
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   170
        Asserts.assertEQ(failedTests, 0,
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   171
                String.format("%d tests failed! %s", failedTests, JVMOptionsUtils.getMessageWithFailures()));
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   172
    }
9821df46cf47 8072931: JEP-JDK-8059557: Test task: test framework development
ddmitriev
parents:
diff changeset
   173
}