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/g1/ \
 237   gc/metaspace/G1AddMetaspaceDependency.java \
 238   gc/metaspace/TestMetaspacePerfCounters.java \
 239   gc/startup_warnings/TestG1.java \
 240   gc/whitebox/TestConcMarkCycleWB.java \
 241   gc/arguments/TestG1ConcRefinementThreads.java
 242 
 243 # All tests that explicitly set the serial GC
 244 #
 245 needs_serialgc = \
 246   gc/TestSystemGC.java \
 247   gc/arguments/TestAlignmentToUseLargePages.java \
 248   gc/arguments/TestMaxNewSize.java \
 249   gc/arguments/TestSerialHeapSizeFlags.java \
 250   gc/arguments/TestUseCompressedOopsErgo.java \
 251   gc/defnew/HeapChangeLogging.java \
 252   gc/metaspace/TestMetaspacePerfCounters.java \
 253   gc/metaspace/TestPerfCountersAndMemoryPools.java \
 254   gc/startup_warnings/TestSerialGC.java 
 255 
 256 # All tests that explicitly set the parallel GC
 257 #
 258 needs_parallelgc = \
 259   gc/TestSystemGC.java \
 260   gc/arguments/TestAlignmentToUseLargePages.java \
 261   gc/arguments/TestMaxNewSize.java \
 262   gc/arguments/TestMinInitialErgonomics.java \
 263   gc/arguments/TestParallelGCThreads.java \
 264   gc/arguments/TestUseCompressedOopsErgo.java \
 265   gc/metaspace/TestMetaspacePerfCounters.java \
 266   gc/parallelScavenge/ \
 267   gc/startup_warnings/TestParallelGC.java \
 268   gc/startup_warnings/TestParallelScavengeSerialOld.java
 269 
 270 # All tests that explicitly set the CMS GC
 271 #
 272 needs_cmsgc = \
 273   gc/6581734/Test6581734.java \
 274   gc/TestSystemGC.java \
 275   gc/arguments/TestAlignmentToUseLargePages.java \
 276   gc/arguments/TestCMSHeapSizeFlags.java \
 277   gc/arguments/TestMaxNewSize.java \
 278   gc/arguments/TestParallelGCThreads.java \
 279   gc/arguments/TestUseCompressedOopsErgo.java \
 280   gc/class_unloading/TestCMSClassUnloadingEnabledHWM.java \
 281   gc/concurrentMarkSweep/ \
 282   gc/startup_warnings/TestCMS.java \
 283   gc/startup_warnings/TestDefNewCMS.java \
 284   gc/startup_warnings/TestParNewCMS.java
 285 
 286 # All tests that explicitly set some GC
 287 #
 288 needs_gc = \
 289   :needs_g1gc \
 290   :needs_serialgc \
 291   :needs_parallelgc \
 292   :needs_cmsgc
 293 
 294 # All tests that do not set any GC explicitly
 295 #
 296 not_needs_gc = \
 297   :jdk \
 298  -:needs_gc
 299 
 300 # All tests that could be executed with the G1 GC without VM flags conflict
 301 #
 302 applicable_g1gc = \
 303   :jdk \
 304  -:needs_serialgc \
 305  -:needs_parallelgc \
 306  -:needs_cmsgc
 307 
 308 # All tests that could be executed with the serial GC without VM flags conflict
 309 #
 310 applicable_serialgc = \
 311   :jdk \
 312  -:needs_g1gc \
 313  -:needs_parallelgc \
 314  -:needs_cmsgc
 315 
 316 # All tests that could be executed with the parallel GC without VM flags conflict
 317 #
 318 applicable_parallelgc = \
 319   :jdk \
 320  -:needs_g1gc \
 321  -:needs_serialgc \
 322  -:needs_cmsgc
 323 
 324 # All tests that could be executed with the CMS GC without VM flags conflict
 325 #
 326 applicable_cmsgc = \
 327   :jdk \
 328  -:needs_g1gc \
 329  -:needs_serialgc \
 330  -:needs_parallelgc
 331 
 332 
 333 # When called from top level the test suites use the hotspot_ prefix
 334 hotspot_wbapitest = \
 335   sanity/
 336 
 337 hotspot_native_sanity = \
 338   native_sanity
 339 
 340 hotspot_compiler_1 = \
 341   compiler/arraycopy/ \
 342   compiler/c1/ \
 343   compiler/c2/ \
 344   -compiler/c2/5091921/Test6850611.java \
 345   -compiler/c2/5091921/Test6890943.java \
 346   -compiler/c2/5091921/Test6905845.java \
 347   -compiler/c2/6340864 \
 348   -compiler/c2/6589834 \
 349   -compiler/c2/6603011 \
 350   -compiler/c2/6912517 \
 351   -compiler/c2/6792161 \
 352   -compiler/c2/7070134 \
 353   -compiler/c2/8004867
 354   
 355 hotspot_compiler_2 = \
 356   compiler/classUnloading/ \
 357   compiler/codecache/ \
 358   compiler/codegen/ \
 359   compiler/cpuflags/ \
 360   compiler/dependencies/ \
 361   compiler/eliminateAutobox/ \
 362   compiler/escapeAnalysis/ \
 363   compiler/exceptions/ \
 364   compiler/floatingpoint/ \
 365   compiler/gcbarriers/ \
 366   compiler/inlining/ \
 367   compiler/integerArithmetic/ \
 368   compiler/interpreter/ \
 369   -compiler/codegen/7184394 \
 370   -compiler/codecache/stress
 371   
 372 hotspot_compiler_3 = \
 373   compiler/intrinsics/ \
 374   compiler/jsr292/ \
 375   compiler/loopopts/ \
 376   compiler/macronodes/ \
 377   compiler/osr/ \
 378   compiler/regalloc/ \
 379   compiler/runtime/ \
 380   compiler/startup/ \
 381   compiler/types/ \
 382   compiler/uncommontrap/ \
 383   compiler/unsafe/ \
 384   -compiler/intrinsics/bmi/verifycode \
 385   -compiler/intrinsics/mathexact \
 386   -compiler/intrinsics/multiplytolen \
 387   -compiler/intrinsics/sha \
 388   -compiler/loopopts/7052494 \
 389   -compiler/runtime/6826736
 390 
 391 hotspot_compiler_closed = \
 392   sanity/ExecuteInternalVMTests.java
 393 
 394 hotspot_gc = \
 395   sanity/ExecuteInternalVMTests.java \
 396   gc/ \
 397   -gc/g1/TestGreyReclaimedHumongousObjects.java \
 398   -gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
 399 
 400 hotspot_gc_closed = \
 401   sanity/ExecuteInternalVMTests.java
 402 
 403 hotspot_gc_gcold = \
 404   stress/gc/TestGCOld.java
 405 
 406 hotspot_runtime = \
 407   runtime/ \
 408  -runtime/6888954/vmerrors.sh \
 409  -runtime/RedefineObject/TestRedefineObject.java \
 410  -runtime/8003720/Test8003720.java \
 411  -runtime/Metaspace/FragmentMetaspace.java \
 412  -runtime/Metaspace/FragmentMetaspaceSimple.java \
 413  -runtime/Thread/TestThreadDumpMonitorContention.java \
 414  -runtime/SharedArchiveFile/SharedBaseAddress.java \
 415  -runtime/memory/ReserveMemory.java \
 416  -runtime/Unsafe/RangeCheck.java \
 417  -runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
 418  -runtime/SharedArchiveFile/DefaultUseWithClient.java \
 419  -runtime/Thread/CancellableThreadTest.java \
 420  -runtime/7158988/FieldMonitor.java
 421 
 422 hotspot_runtime_closed = \
 423   sanity/ExecuteInternalVMTests.java \
 424   testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java
 425 
 426 hotspot_serviceability = \
 427   sanity/ExecuteInternalVMTests.java \
 428   serviceability/dcmd/compiler
 429 
 430 hotspot_jprt = \
 431   :hotspot_wbapitest \
 432   :hotspot_compiler_1 \
 433   :hotspot_compiler_2 \
 434   :hotspot_compiler_3 \
 435   :hotspot_compiler_closed \
 436   :hotspot_gc \
 437   :hotspot_gc_closed \
 438   :hotspot_gc_gcold \
 439   :hotspot_runtime \
 440   :hotspot_runtime_closed \
 441   :hotspot_serviceability
 442 
 443 #All tests that depends on nashorn extension.
 444 #
 445 needs_nashorn = \
 446   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
 447 
 448 #All tests that do not depends on nashorn extension
 449 #
 450 not_needs_nashorn = \
 451   :jdk \
 452   -:needs_nashorn