1 #
   2 # Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   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 # Profile-based Test Group Definitions
  25 #
  26 # These groups define the tests that cover the different possible runtimes:
  27 # - compact1, compact2, compact3, full JRE, JDK
  28 #
  29 # In addition they support testing of the minimal VM on compact1 and compact2.
  30 # Essentially this defines groups based around the specified API's and VM
  31 # services available in the runtime.
  32 #
  33 # The groups are defined hierarchically in two forms:
  34 # - The need_xxx groups list all the tests that have a dependency on
  35 # a specific profile. This is either because it tests a feature in
  36 # that profile, or the test infrastructure uses a feature in that
  37 # profile.
  38 # - The primary groups are defined in terms of the other primary groups
  39 # combined with the needs_xxx groups (including and excluding them as
  40 # appropriate). For example the jre can run all tests from compact3, plus
  41 # those from needs_jre, but excluding those from need_jdk.
  42 #
  43 # The bottom group defines all the actual tests to be considered, simply
  44 # by listing the top-level test directories.
  45 #
  46 # To use a group simply list it on the jtreg command line eg:
  47 #   jtreg :jdk
  48 # runs all tests. While
  49 #   jtreg :compact2
  50 # runs those tests that only require compact1 and compact2 API's.
  51 #
  52 
  53 hotspot_all = \
  54   /
  55 
  56 # Full JDK can run all tests
  57 #
  58 jdk = \
  59   :jre \
  60   :needs_jdk
  61 
  62 # Tests that require a full JDK to execute. Either they test a feature
  63 # only in the JDK or they use tools that are only in the JDK. The latter
  64 # can be resolved in some cases by using tools from the compile-jdk.
  65 #
  66 needs_jdk = \
  67   gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java \
  68   gc/metaspace/TestMetaspacePerfCounters.java \
  69   gc/metaspace/TestPerfCountersAndMemoryPools.java \
  70   runtime/6819213/TestBootNativeLibraryPath.java \
  71   runtime/7158988/FieldMonitor.java \
  72   runtime/Metaspace/FragmentMetaspace.java \
  73   runtime/NMT/BaselineWithParameter.java \
  74   runtime/NMT/JcmdBaselineDetail.java \
  75   runtime/NMT/JcmdDetailDiff.java \
  76   runtime/NMT/JcmdScaleDetail.java \
  77   runtime/NMT/JcmdScale.java \
  78   runtime/NMT/JcmdSummaryDiff.java \
  79   runtime/NMT/JcmdWithNMTDisabled.java \
  80   runtime/NMT/MallocRoundingReportTest.java \
  81   runtime/NMT/MallocSiteHashOverflow.java \
  82   runtime/NMT/MallocStressTest.java \
  83   runtime/NMT/MallocTestType.java \
  84   runtime/NMT/MallocTrackingVerify.java \
  85   runtime/NMT/ReleaseCommittedMemory.java \
  86   runtime/NMT/ReleaseNoCommit.java \
  87   runtime/NMT/ShutdownTwice.java \
  88   runtime/NMT/SummaryAfterShutdown.java \
  89   runtime/NMT/SummarySanityCheck.java \
  90   runtime/NMT/ThreadedMallocTestType.java \
  91   runtime/NMT/ThreadedVirtualAllocTestType.java \
  92   runtime/NMT/VirtualAllocCommitUncommitRecommit.java \
  93   runtime/NMT/VirtualAllocTestType.java \
  94   runtime/RedefineObject/TestRedefineObject.java \
  95   runtime/Thread/TestThreadDumpMonitorContention.java \
  96   runtime/Thread/ThreadPriorities.java \
  97   runtime/XCheckJniJsig/XCheckJSig.java \
  98   serviceability/attach/AttachWithStalePidFile.java \
  99   serviceability/sa/jmap-hprof/JMapHProfLargeHeapTest.java \
 100   serviceability/dcmd/vm/DynLibsTest.java
 101 
 102 
 103 # JRE adds further tests to compact3
 104 #
 105 jre = \
 106   :compact3 \
 107   :needs_jre \
 108  -:needs_jdk
 109 
 110 # Tests that require the full JRE
 111 #
 112 needs_jre = \
 113   compiler/c2/6852078/Test6852078.java \
 114   compiler/c2/7047069/Test7047069.java \
 115   runtime/6294277/SourceDebugExtension.java \
 116   runtime/ClassFile/JsrRewriting.java \
 117   runtime/ClassFile/OomWhileParsingRepeatedJsr.java \
 118   runtime/SharedArchiveFile/LimitSharedSizes.java \
 119   runtime/SharedArchiveFile/SpaceUtilizationCheck.java
 120 
 121 # Compact 3 adds further tests to compact2
 122 #
 123 compact3 = \
 124   :compact2 \
 125   :needs_compact3 \
 126  -:needs_jre \
 127  -:needs_jdk
 128 
 129 
 130 # Tests that require compact3 API's
 131 #
 132 needs_compact3 = \
 133   gc/6581734/Test6581734.java \
 134   gc/7072527/TestFullGCCount.java \
 135   gc/g1/TestHumongousAllocInitialMark.java \
 136   gc/arguments/TestG1HeapRegionSize.java \
 137   gc/metaspace/TestMetaspaceMemoryPool.java \
 138   gc/arguments/TestDynMinHeapFreeRatio.java \
 139   gc/arguments/TestDynMaxHeapFreeRatio.java \
 140   gc/g1/TestShrinkAuxiliaryData00.java \
 141   gc/g1/TestShrinkAuxiliaryData05.java \
 142   gc/g1/TestShrinkAuxiliaryData10.java \
 143   gc/g1/TestShrinkAuxiliaryData15.java \
 144   gc/g1/TestShrinkAuxiliaryData20.java \
 145   gc/g1/TestShrinkAuxiliaryData25.java \
 146   gc/g1/TestShrinkAuxiliaryData30.java \
 147   gc/survivorAlignment \
 148   runtime/InternalApi/ThreadCpuTimesDeadlock.java \
 149   serviceability/threads/TestFalseDeadLock.java \
 150   compiler/codecache/jmx \
 151   serviceability/dcmd
 152 
 153 # Compact 2 adds full VM tests
 154 compact2 = \
 155   :compact2_minimal \
 156   :compact1 \
 157   :needs_full_vm_compact2 \
 158  -:needs_compact3 \
 159  -:needs_jre \
 160  -:needs_jdk
 161 
 162 # Tests that require compact2 API's and a full VM
 163 #
 164 needs_full_vm_compact2 =
 165 
 166 # Compact 1 adds full VM tests
 167 #
 168 compact1 = \
 169   :compact1_minimal \
 170   :needs_full_vm_compact1 \
 171  -:needs_compact2 \
 172  -:needs_full_vm_compact2 \
 173  -:needs_compact3 \
 174  -:needs_jre \
 175  -:needs_jdk
 176 
 177 # Tests that require compact1 API's and a full VM
 178 #
 179 needs_full_vm_compact1 = \
 180   runtime/NMT \
 181   gc/g1/TestRegionAlignment.java \
 182   gc/g1/TestShrinkToOneRegion.java \
 183   gc/metaspace/G1AddMetaspaceDependency.java \
 184   gc/startup_warnings/TestCMS.java \
 185   gc/startup_warnings/TestDefaultMaxRAMFraction.java \
 186   gc/startup_warnings/TestDefNewCMS.java \
 187   gc/startup_warnings/TestParallelGC.java \
 188   gc/startup_warnings/TestParallelScavengeSerialOld.java \
 189   gc/startup_warnings/TestParNewCMS.java \
 190   gc/startup_warnings/TestParNewSerialOld.java \
 191   runtime/SharedArchiveFile/SharedArchiveFile.java
 192 
 193 # Minimal VM on Compact 2 adds in some compact2 tests
 194 #
 195 compact2_minimal = \
 196   :compact1_minimal \
 197   :needs_compact2 \
 198  -:needs_full_vm_compact2 \
 199  -:needs_compact3 \
 200  -:needs_jre \
 201  -:needs_jdk
 202 
 203 # Tests that require compact2 API's
 204 #
 205 needs_compact2 = \
 206   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
 207 
 208 # All tests that run on the most minimal configuration: Minimal VM on Compact 1
 209 compact1_minimal = \
 210   serviceability/ \
 211   compiler/ \
 212   sanity/ \
 213   runtime/ \
 214   gc/ \
 215  -:needs_full_vm_compact1 \
 216  -:needs_full_vm_compact2 \
 217  -:needs_compact2 \
 218  -:needs_compact3 \
 219  -:needs_jre \
 220  -:needs_jdk
 221 
 222 # All tests that explicitly set the G1 GC
 223 #
 224 needs_g1gc = \
 225   compiler/regalloc/C1ObjectSpillInLogicOp.java \
 226   gc/TestSystemGC.java \
 227   gc/arguments/TestAlignmentToUseLargePages.java \
 228   gc/arguments/TestG1HeapRegionSize.java \
 229   gc/arguments/TestG1HeapSizeFlags.java \
 230   gc/arguments/TestG1PercentageOptions.java \
 231   gc/arguments/TestMaxHeapSizeTools.java \
 232   gc/arguments/TestMaxNewSize.java \
 233   gc/arguments/TestParallelGCThreads.java \
 234   gc/arguments/TestUseCompressedOopsErgo.java \
 235   gc/class_unloading/TestG1ClassUnloadingHWM.java \
 236   gc/ergonomics/TestDynamicNumberOfGCThreads.java
 237   gc/g1/ \
 238   gc/metaspace/G1AddMetaspaceDependency.java \
 239   gc/metaspace/TestMetaspacePerfCounters.java \
 240   gc/startup_warnings/TestG1.java \
 241   gc/whitebox/TestConcMarkCycleWB.java \
 242   gc/arguments/TestG1ConcRefinementThreads.java
 243 
 244 # All tests that explicitly set the serial GC
 245 #
 246 needs_serialgc = \
 247   gc/TestSystemGC.java \
 248   gc/arguments/TestAlignmentToUseLargePages.java \
 249   gc/arguments/TestMaxNewSize.java \
 250   gc/arguments/TestSerialHeapSizeFlags.java \
 251   gc/arguments/TestUseCompressedOopsErgo.java \
 252   gc/defnew/HeapChangeLogging.java \
 253   gc/metaspace/TestMetaspacePerfCounters.java \
 254   gc/metaspace/TestPerfCountersAndMemoryPools.java \
 255   gc/startup_warnings/TestSerialGC.java 
 256 
 257 # All tests that explicitly set the parallel GC
 258 #
 259 needs_parallelgc = \
 260   gc/TestSystemGC.java \
 261   gc/arguments/TestAlignmentToUseLargePages.java \
 262   gc/arguments/TestMaxNewSize.java \
 263   gc/arguments/TestMinInitialErgonomics.java \
 264   gc/arguments/TestParallelGCThreads.java \
 265   gc/arguments/TestUseCompressedOopsErgo.java \
 266   gc/ergonomics/TestDynamicNumberOfGCThreads.java
 267   gc/metaspace/TestMetaspacePerfCounters.java \
 268   gc/parallelScavenge/ \
 269   gc/startup_warnings/TestParallelGC.java \
 270   gc/startup_warnings/TestParallelScavengeSerialOld.java
 271 
 272 # All tests that explicitly set the CMS GC
 273 #
 274 needs_cmsgc = \
 275   gc/6581734/Test6581734.java \
 276   gc/TestSystemGC.java \
 277   gc/arguments/TestAlignmentToUseLargePages.java \
 278   gc/arguments/TestCMSHeapSizeFlags.java \
 279   gc/arguments/TestMaxNewSize.java \
 280   gc/arguments/TestParallelGCThreads.java \
 281   gc/arguments/TestUseCompressedOopsErgo.java \
 282   gc/class_unloading/TestCMSClassUnloadingEnabledHWM.java \
 283   gc/concurrentMarkSweep/ \
 284   gc/ergonomics/TestDynamicNumberOfGCThreads.java
 285   gc/startup_warnings/TestCMS.java \
 286   gc/startup_warnings/TestDefNewCMS.java \
 287   gc/startup_warnings/TestParNewCMS.java
 288 
 289 # All tests that explicitly set some GC
 290 #
 291 needs_gc = \
 292   :needs_g1gc \
 293   :needs_serialgc \
 294   :needs_parallelgc \
 295   :needs_cmsgc
 296 
 297 # All tests that do not set any GC explicitly
 298 #
 299 not_needs_gc = \
 300   :jdk \
 301  -:needs_gc
 302 
 303 # All tests that could be executed with the G1 GC without VM flags conflict
 304 #
 305 applicable_g1gc = \
 306   :jdk \
 307  -:needs_serialgc \
 308  -:needs_parallelgc \
 309  -:needs_cmsgc
 310 
 311 # All tests that could be executed with the serial GC without VM flags conflict
 312 #
 313 applicable_serialgc = \
 314   :jdk \
 315  -:needs_g1gc \
 316  -:needs_parallelgc \
 317  -:needs_cmsgc
 318 
 319 # All tests that could be executed with the parallel GC without VM flags conflict
 320 #
 321 applicable_parallelgc = \
 322   :jdk \
 323  -:needs_g1gc \
 324  -:needs_serialgc \
 325  -:needs_cmsgc
 326 
 327 # All tests that could be executed with the CMS GC without VM flags conflict
 328 #
 329 applicable_cmsgc = \
 330   :jdk \
 331  -:needs_g1gc \
 332  -:needs_serialgc \
 333  -:needs_parallelgc
 334 
 335 hotspot_native_sanity = \
 336   native_sanity
 337 
 338 hotspot_compiler_1 = \
 339   compiler/arraycopy/ \
 340   compiler/c1/ \
 341   compiler/c2/ \
 342   -compiler/c2/5091921/Test6850611.java \
 343   -compiler/c2/5091921/Test6890943.java \
 344   -compiler/c2/5091921/Test6905845.java \
 345   -compiler/c2/6340864 \
 346   -compiler/c2/6589834 \
 347   -compiler/c2/6603011 \
 348   -compiler/c2/6912517 \
 349   -compiler/c2/6792161 \
 350   -compiler/c2/7070134 \
 351   -compiler/c2/8004867
 352   
 353 hotspot_compiler_2 = \
 354   compiler/classUnloading/ \
 355   compiler/codecache/ \
 356   compiler/codegen/ \
 357   compiler/cpuflags/ \
 358   compiler/dependencies/ \
 359   compiler/eliminateAutobox/ \
 360   compiler/escapeAnalysis/ \
 361   compiler/exceptions/ \
 362   compiler/floatingpoint/ \
 363   compiler/gcbarriers/ \
 364   compiler/inlining/ \
 365   compiler/integerArithmetic/ \
 366   compiler/interpreter/ \
 367   -compiler/codegen/7184394 \
 368   -compiler/codecache/stress
 369   
 370 hotspot_compiler_3 = \
 371   compiler/intrinsics/ \
 372   compiler/jsr292/ \
 373   compiler/loopopts/ \
 374   compiler/macronodes/ \
 375   compiler/osr/ \
 376   compiler/regalloc/ \
 377   compiler/runtime/ \
 378   compiler/startup/ \
 379   compiler/types/ \
 380   compiler/uncommontrap/ \
 381   compiler/unsafe/ \
 382   -compiler/intrinsics/bmi/verifycode \
 383   -compiler/intrinsics/mathexact \
 384   -compiler/intrinsics/multiplytolen \
 385   -compiler/intrinsics/sha \
 386   -compiler/loopopts/7052494 \
 387   -compiler/runtime/6826736
 388 
 389 hotspot_compiler_closed = \
 390   sanity/ExecuteInternalVMTests.java
 391 
 392 hotspot_gc = \
 393   sanity/ExecuteInternalVMTests.java \
 394   gc/ \
 395   -gc/g1/TestGreyReclaimedHumongousObjects.java \
 396   -gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
 397 
 398 hotspot_gc_closed = \
 399   sanity/ExecuteInternalVMTests.java
 400 
 401 hotspot_gc_gcold = \
 402   stress/gc/TestGCOld.java
 403 
 404 hotspot_runtime = \
 405   runtime/ \
 406  -runtime/6888954/vmerrors.sh \
 407  -runtime/RedefineObject/TestRedefineObject.java \
 408  -runtime/8003720/Test8003720.java \
 409  -runtime/Metaspace/FragmentMetaspace.java \
 410  -runtime/Metaspace/FragmentMetaspaceSimple.java \
 411  -runtime/Thread/TestThreadDumpMonitorContention.java \
 412  -runtime/SharedArchiveFile/SharedBaseAddress.java \
 413  -runtime/memory/ReserveMemory.java \
 414  -runtime/Unsafe/RangeCheck.java \
 415  -runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
 416  -runtime/SharedArchiveFile/DefaultUseWithClient.java \
 417  -runtime/Thread/CancellableThreadTest.java \
 418  -runtime/7158988/FieldMonitor.java \
 419  -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \
 420   sanity/ \
 421   testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java
 422 
 423 hotspot_serviceability = \
 424   sanity/ExecuteInternalVMTests.java \
 425   serviceability/dcmd/compiler
 426 
 427 hotspot_jprt = \
 428   :hotspot_compiler_1 \
 429   :hotspot_compiler_2 \
 430   :hotspot_compiler_3 \
 431   :hotspot_compiler_closed \
 432   :hotspot_gc \
 433   :hotspot_gc_closed \
 434   :hotspot_gc_gcold \
 435   :hotspot_runtime \
 436   :hotspot_serviceability
 437 
 438 #All tests that depends on nashorn extension.
 439 #
 440 needs_nashorn = \
 441   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
 442 
 443 #All tests that do not depends on nashorn extension
 444 #
 445 not_needs_nashorn = \
 446   :jdk \
 447   -:needs_nashorn