1 #
   2 # Copyright (c) 2013, 2018, 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 hotspot_all = \
  25   /
  26 
  27 hotspot_all_no_apps = \
  28   / \
  29   -applications
  30 
  31 hotspot_compiler = \
  32   compiler
  33 
  34 hotspot_compiler_xcomp = \
  35   :hotspot_compiler \
  36   -:tier1_compiler_not_xcomp
  37 
  38 hotspot_gc = \
  39   gc
  40 
  41 hotspot_runtime = \
  42   runtime
  43 
  44 hotspot_handshake = \
  45   runtime/handshake
  46 
  47 hotspot_serviceability = \
  48   serviceability
  49 
  50 hotspot_misc = \
  51   / \
  52  -applications \
  53  -:hotspot_compiler \
  54  -:hotspot_gc \
  55  -:hotspot_runtime \
  56  -:hotspot_serviceability
  57 
  58 hotspot_native_sanity = \
  59   native_sanity
  60 
  61 tier1_common = \
  62   sanity/BasicVMTest.java \
  63   gtest/GTestWrapper.java
  64 
  65 tier1_compiler = \
  66   :tier1_compiler_1 \
  67   :tier1_compiler_2 \
  68   :tier1_compiler_3 \
  69   :tier1_compiler_not_xcomp
  70 
  71 hotspot_not_fast_compiler = \
  72   :hotspot_compiler \
  73   -:tier1_compiler
  74 
  75 tier1_compiler_1 = \
  76   compiler/arraycopy/ \
  77   compiler/c1/ \
  78   compiler/c2/ \
  79   -compiler/c2/Test6850611.java \
  80   -compiler/c2/cr6890943/Test6890943.java \
  81   -compiler/c2/Test6905845.java \
  82   -compiler/c2/cr6340864 \
  83   -compiler/c2/cr6589834 \
  84   -compiler/c2/cr8004867 \
  85   -compiler/c2/stemmer \
  86   -compiler/c2/Test6792161.java \
  87   -compiler/c2/Test6603011.java \
  88   -compiler/c2/Test6912517.java \
  89 
  90 tier1_compiler_2 = \
  91   compiler/classUnloading/ \
  92   compiler/codecache/ \
  93   compiler/codegen/ \
  94   compiler/cpuflags/ \
  95   compiler/dependencies/ \
  96   compiler/eliminateAutobox/ \
  97   compiler/escapeAnalysis/ \
  98   compiler/exceptions/ \
  99   compiler/floatingpoint/ \
 100   compiler/gcbarriers/ \
 101   compiler/inlining/ \
 102   compiler/integerArithmetic/ \
 103   compiler/interpreter/ \
 104   compiler/jvmci/ \
 105   -compiler/codegen/aes \
 106   -compiler/codecache/stress \
 107   -compiler/gcbarriers/PreserveFPRegistersTest.java
 108 
 109 tier1_compiler_3 = \
 110   compiler/intrinsics/ \
 111   compiler/jsr292/ \
 112   compiler/loopopts/ \
 113   compiler/macronodes/ \
 114   compiler/memoryinitialization/ \
 115   compiler/osr/ \
 116   compiler/regalloc/ \
 117   compiler/runtime/ \
 118   compiler/startup/ \
 119   compiler/types/ \
 120   compiler/uncommontrap/ \
 121   compiler/unsafe/ \
 122   compiler/vectorization/ \
 123   -compiler/intrinsics/bmi \
 124   -compiler/intrinsics/mathexact \
 125   -compiler/intrinsics/sha \
 126   -compiler/intrinsics/bigInteger/TestMultiplyToLen.java \
 127   -compiler/intrinsics/zip/TestAdler32.java \
 128   -compiler/loopopts/Test7052494.java \
 129   -compiler/runtime/Test6826736.java
 130 
 131 tier1_compiler_not_xcomp = \
 132   compiler/aot
 133 
 134 ctw_1 = \
 135   applications/ctw/modules/ \
 136   -:ctw_2
 137 
 138 ctw_2 = \
 139   applications/ctw/modules/java_base.java \
 140   applications/ctw/modules/java_desktop.java
 141 
 142 tier1_gc = \
 143   :tier1_gc_1 \
 144   :tier1_gc_2 \
 145   :tier1_gc_gcold \
 146   :tier1_gc_gcbasher
 147 
 148 hotspot_not_fast_gc = \
 149   :hotspot_gc \
 150   -:tier1_gc
 151 
 152 tier1_gc_1 = \
 153   gc/g1/ \
 154   -gc/g1/ihop/TestIHOPErgo.java
 155 
 156 tier1_gc_2 = \
 157   sanity/ExecuteInternalVMTests.java \
 158   gc/ \
 159   -gc/g1/ \
 160   -gc/logging/TestUnifiedLoggingSwitchStress.java \
 161   -gc/stress \
 162   -gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java \
 163   -gc/cms/TestMBeanCMS.java \
 164   -gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
 165 
 166 tier1_gc_gcold = \
 167   gc/stress/gcold/TestGCOldWithG1.java \
 168   gc/stress/gcold/TestGCOldWithCMS.java \
 169   gc/stress/gcold/TestGCOldWithSerial.java \
 170   gc/stress/gcold/TestGCOldWithParallel.java
 171 
 172 tier1_gc_gcbasher = \
 173   gc/stress/gcbasher/TestGCBasherWithG1.java \
 174   gc/stress/gcbasher/TestGCBasherWithCMS.java \
 175   gc/stress/gcbasher/TestGCBasherWithSerial.java \
 176   gc/stress/gcbasher/TestGCBasherWithParallel.java
 177 
 178 tier1_runtime = \
 179   runtime/ \
 180  -runtime/6626217/Test6626217.sh \
 181  -runtime/7100935 \
 182  -runtime/7158988/FieldMonitor.java \
 183  -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \
 184  -runtime/CommandLine/PrintGCApplicationConcurrentTime.java \
 185  -runtime/ConstantPool/IntfMethod.java \
 186  -runtime/ErrorHandling/CreateCoredumpOnCrash.java \
 187  -runtime/ErrorHandling/ErrorHandler.java \
 188  -runtime/ErrorHandling/TimeoutInErrorHandlingTest.java \
 189  -runtime/logging/MonitorMismatchTest.java \
 190  -runtime/memory/ReserveMemory.java \
 191  -runtime/memory/RunUnitTestsConcurrently.java \
 192  -runtime/Metaspace/FragmentMetaspace.java \
 193  -runtime/Metaspace/FragmentMetaspaceSimple.java \
 194  -runtime/MirrorFrame/Test8003720.java \
 195  -runtime/modules/LoadUnloadModuleStress.java \
 196  -runtime/modules/ModuleStress/ExportModuleStressTest.java \
 197  -runtime/modules/ModuleStress/ModuleStressGC.java \
 198  -runtime/NMT \
 199  -runtime/RedefineObject/TestRedefineObject.java \
 200  -runtime/RedefineTests/RedefineLeak.java \
 201  -runtime/RedefineTests/RedefinePreviousVersions.java \
 202  -runtime/RedefineTests/RedefineRunningMethods.java \
 203  -runtime/RedefineTests/RedefineRunningMethodsWithBacktrace.java \
 204  -runtime/ReservedStack \
 205  -runtime/SelectionResolution/AbstractMethodErrorTest.java \
 206  -runtime/SelectionResolution/IllegalAccessErrorTest.java \
 207  -runtime/SelectionResolution/InvokeInterfaceICCE.java \
 208  -runtime/SelectionResolution/InvokeInterfaceSuccessTest.java \
 209  -runtime/SelectionResolution/InvokeSpecialICCE.java \
 210  -runtime/SelectionResolution/InvokeSpecialSuccessTest.java \
 211  -runtime/SelectionResolution/InvokeStaticICCE.java \
 212  -runtime/SelectionResolution/InvokeVirtualICCE.java \
 213  -runtime/SelectionResolution/InvokeVirtualSuccessTest.java \
 214  -runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
 215  -runtime/SharedArchiveFile/DefaultUseWithClient.java \
 216  -runtime/SharedArchiveFile/SharedBaseAddress.java \
 217  -runtime/Thread/CancellableThreadTest.java \
 218  -runtime/Thread/TestThreadDumpMonitorContention.java \
 219  -runtime/Unsafe/RangeCheck.java \
 220  -runtime/containers/ \
 221   sanity/ \
 222   testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java \
 223  -:tier1_runtime_appcds_exclude
 224 
 225 hotspot_cds = \
 226   runtime/SharedArchiveFile/ \
 227   runtime/CompressedOops/
 228 
 229 # AppCDS
 230 # If modifying AppCDS it is also recommended to run the open hotspot_cds group
 231 hotspot_appcds = \
 232   runtime/appcds/
 233 
 234 # A subset of AppCDS tests to be run in JPRT push
 235 tier1_runtime_appcds = \
 236   runtime/appcds/HelloTest.java \
 237   runtime/appcds/sharedStrings/SharedStringsBasic.java \
 238   runtime/appcds/ClassLoaderTest.java
 239 
 240 tier1_runtime_appcds_exclude = \
 241   runtime/appcds/ \
 242   -:tier1_runtime_appcds
 243 
 244 tier1_serviceability = \
 245   serviceability/dcmd/compiler \
 246   serviceability/logging \
 247   serviceability/sa \
 248   -serviceability/sa/ClhsdbScanOops.java \
 249   -serviceability/sa/TestHeapDumpForLargeArray.java
 250 
 251 tier1 = \
 252   :tier1_common \
 253   :tier1_compiler \
 254   :tier1_gc \
 255   :tier1_runtime \
 256   :tier1_serviceability
 257 
 258 hotspot_tier2_runtime = \
 259   runtime/ \
 260   serviceability/ \
 261  -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \
 262  -runtime/Thread/TestThreadDumpMonitorContention.java \
 263  -runtime/containers/ \
 264  -:tier1_runtime \
 265  -:tier1_serviceability \
 266  -:hotspot_tier2_runtime_platform_agnostic
 267 
 268 hotspot_tier2_runtime_platform_agnostic = \
 269   runtime/SelectionResolution \
 270  -:tier1_runtime
 271 
 272 hotspot_tier3_runtime = \
 273   runtime/ \
 274   serviceability/ \
 275  -runtime/containers/ \
 276  -:tier1_runtime \
 277  -:tier1_serviceability \
 278  -:hotspot_tier2_runtime_platform_agnostic \
 279  -:hotspot_tier2_runtime
 280 
 281 hotspot_runtime_minimalvm = \
 282   runtime/MinimalVM \
 283   runtime/ErrorHandling \
 284   runtime/logging
 285 
 286 hotspot_nmt = \
 287   runtime/NMT
 288 
 289 hotspot_rest_runtime = \
 290   :hotspot_runtime \
 291   -:tier1_runtime \
 292   -:tier1_runtime_appcds_exclude \
 293   -:hotspot_nmt \
 294   -:hotspot_tier2_runtime_platform_agnostic