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   runtime/NMT/JcmdSummaryDiff.java \
 150   runtime/RedefineTests/RedefineAnnotations.java
 151   serviceability/sa/jmap-hashcode/Test8028623.java \
 152   serviceability/threads/TestFalseDeadLock.java \
 153   compiler/codecache/jmx \
 154   compiler/jsr292/RedefineMethodUsedByMultipleMethodHandles.java \
 155   compiler/rangechecks/TestRangeCheckSmearing.java \
 156   compiler/whitebox/DeoptimizeMultipleOSRTest.java \
 157   serviceability/dcmd \
 158   testlibrary_tests/whitebox/vm_flags
 159 
 160 # Compact 2 adds full VM tests
 161 compact2 = \
 162   :compact2_minimal \
 163   :compact1 \
 164   :needs_full_vm_compact2 \
 165  -:needs_compact3 \
 166  -:needs_jre \
 167  -:needs_jdk
 168 
 169 # Tests that require compact2 API's and a full VM
 170 #
 171 needs_full_vm_compact2 =
 172 
 173 # Compact 1 adds full VM tests
 174 #
 175 compact1 = \
 176   :compact1_minimal \
 177   :needs_full_vm_compact1 \
 178  -:needs_compact2 \
 179  -:needs_full_vm_compact2 \
 180  -:needs_compact3 \
 181  -:needs_jre \
 182  -:needs_jdk
 183 
 184 # Tests that require compact1 API's and a full VM
 185 #
 186 needs_full_vm_compact1 = \
 187   runtime/NMT \
 188   gc/g1/TestRegionAlignment.java \
 189   gc/g1/TestShrinkToOneRegion.java \
 190   gc/metaspace/G1AddMetaspaceDependency.java \
 191   gc/startup_warnings/TestCMS.java \
 192   gc/startup_warnings/TestDefNewCMS.java \
 193   gc/startup_warnings/TestParallelGC.java \
 194   gc/startup_warnings/TestParallelScavengeSerialOld.java \
 195   gc/startup_warnings/TestParNewCMS.java \
 196   gc/startup_warnings/TestParNewSerialOld.java \
 197   runtime/SharedArchiveFile/SharedArchiveFile.java
 198 
 199 # Minimal VM on Compact 2 adds in some compact2 tests
 200 #
 201 compact2_minimal = \
 202   :compact1_minimal \
 203   :needs_compact2 \
 204  -:needs_full_vm_compact2 \
 205  -:needs_compact3 \
 206  -:needs_jre \
 207  -:needs_jdk
 208 
 209 # Tests that require compact2 API's
 210 #
 211 needs_compact2 = \
 212   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
 213 
 214 # All tests that run on the most minimal configuration: Minimal VM on Compact 1
 215 compact1_minimal = \
 216   serviceability/ \
 217   compiler/ \
 218   sanity/ \
 219   runtime/ \
 220   gc/ \
 221  -:needs_full_vm_compact1 \
 222  -:needs_full_vm_compact2 \
 223  -:needs_compact2 \
 224  -:needs_compact3 \
 225  -:needs_jre \
 226  -:needs_jdk
 227 
 228 # All tests that explicitly set the G1 GC
 229 #
 230 needs_g1gc = \
 231   compiler/regalloc/C1ObjectSpillInLogicOp.java \
 232   gc/TestSystemGC.java \
 233   gc/arguments/TestAlignmentToUseLargePages.java \
 234   gc/arguments/TestG1HeapRegionSize.java \
 235   gc/arguments/TestG1HeapSizeFlags.java \
 236   gc/arguments/TestG1PercentageOptions.java \
 237   gc/arguments/TestMaxHeapSizeTools.java \
 238   gc/arguments/TestMaxNewSize.java \
 239   gc/arguments/TestParallelGCThreads.java \
 240   gc/arguments/TestUseCompressedOopsErgo.java \
 241   gc/class_unloading/TestG1ClassUnloadingHWM.java \
 242   gc/ergonomics/TestDynamicNumberOfGCThreads.java \
 243   gc/g1/ \
 244   gc/metaspace/G1AddMetaspaceDependency.java \
 245   gc/metaspace/TestMetaspacePerfCounters.java \
 246   gc/startup_warnings/TestG1.java \
 247   gc/whitebox/TestConcMarkCycleWB.java \
 248   gc/arguments/TestG1ConcRefinementThreads.java
 249 
 250 hotspot_native_sanity = \
 251   native_sanity
 252 
 253 hotspot_compiler_1 = \
 254   compiler/arraycopy/ \
 255   compiler/c1/ \
 256   compiler/c2/ \
 257   -compiler/c2/5091921/Test6850611.java \
 258   -compiler/c2/5091921/Test6890943.java \
 259   -compiler/c2/5091921/Test6905845.java \
 260   -compiler/c2/6340864 \
 261   -compiler/c2/6589834 \
 262   -compiler/c2/6603011 \
 263   -compiler/c2/6912517 \
 264   -compiler/c2/6792161 \
 265   -compiler/c2/7070134 \
 266   -compiler/c2/8004867
 267   
 268 hotspot_compiler_2 = \
 269   compiler/classUnloading/ \
 270   compiler/codecache/ \
 271   compiler/codegen/ \
 272   compiler/cpuflags/ \
 273   compiler/dependencies/ \
 274   compiler/eliminateAutobox/ \
 275   compiler/escapeAnalysis/ \
 276   compiler/exceptions/ \
 277   compiler/floatingpoint/ \
 278   compiler/gcbarriers/ \
 279   compiler/inlining/ \
 280   compiler/integerArithmetic/ \
 281   compiler/interpreter/ \
 282   compiler/jvmci/ \
 283   -compiler/codegen/7184394 \
 284   -compiler/codecache/stress
 285   
 286 hotspot_compiler_3 = \
 287   compiler/intrinsics/ \
 288   compiler/jsr292/ \
 289   compiler/loopopts/ \
 290   compiler/macronodes/ \
 291   compiler/memoryinitialization/ \
 292   compiler/osr/ \
 293   compiler/regalloc/ \
 294   compiler/runtime/ \
 295   compiler/startup/ \
 296   compiler/types/ \
 297   compiler/uncommontrap/ \
 298   compiler/unsafe/ \
 299   -compiler/intrinsics/bmi/verifycode \
 300   -compiler/intrinsics/mathexact \
 301   -compiler/intrinsics/multiplytolen \
 302   -compiler/intrinsics/sha \
 303   -compiler/loopopts/7052494 \
 304   -compiler/runtime/6826736
 305 
 306 hotspot_compiler_closed = \
 307   sanity/ExecuteInternalVMTests.java
 308 
 309 hotspot_gc = \
 310   sanity/ExecuteInternalVMTests.java \
 311   gc/ \
 312   -gc/g1/TestGreyReclaimedHumongousObjects.java \
 313   -gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
 314 
 315 hotspot_gc_closed = \
 316   sanity/ExecuteInternalVMTests.java
 317 
 318 hotspot_gc_gcold = \
 319   stress/gc/TestGCOld.java
 320 
 321 hotspot_runtime = \
 322   runtime/ \
 323  -runtime/ErrorHandling/ErrorHandler.java \
 324  -runtime/RedefineObject/TestRedefineObject.java \
 325  -runtime/8003720/Test8003720.java \
 326  -runtime/Metaspace/FragmentMetaspace.java \
 327  -runtime/Metaspace/FragmentMetaspaceSimple.java \
 328  -runtime/Thread/TestThreadDumpMonitorContention.java \
 329  -runtime/SharedArchiveFile/SharedBaseAddress.java \
 330  -runtime/memory/ReserveMemory.java \
 331  -runtime/memory/RunUnitTestsConcurrently.java \
 332  -runtime/Unsafe/RangeCheck.java \
 333  -runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
 334  -runtime/SharedArchiveFile/DefaultUseWithClient.java \
 335  -runtime/Thread/CancellableThreadTest.java \
 336  -runtime/7158988/FieldMonitor.java \
 337  -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \
 338   sanity/ \
 339   testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java
 340 
 341 hotspot_serviceability = \
 342   sanity/ExecuteInternalVMTests.java \
 343   serviceability/dcmd/compiler
 344 
 345 hotspot_jprt = \
 346   :hotspot_compiler_1 \
 347   :hotspot_compiler_2 \
 348   :hotspot_compiler_3 \
 349   :hotspot_compiler_closed \
 350   :hotspot_gc \
 351   :hotspot_gc_closed \
 352   :hotspot_gc_gcold \
 353   :hotspot_runtime \
 354   :hotspot_serviceability
 355 
 356 #All tests that depends on nashorn extension.
 357 #
 358 needs_nashorn = \
 359   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
 360 
 361 #All tests that do not depends on nashorn extension
 362 #
 363 not_needs_nashorn = \
 364   :jdk \
 365   -:needs_nashorn