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