1 #
   2 # Copyright (c) 2013, 2014, 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 # Full JDK can run all tests
  54 #
  55 jdk = \
  56   :jre \
  57   :needs_jdk
  58 
  59 # Tests that require a full JDK to execute. Either they test a feature
  60 # only in the JDK or they use tools that are only in the JDK. The latter
  61 # can be resolved in some cases by using tools from the compile-jdk.
  62 #
  63 needs_jdk = \
  64   gc/TestG1ZeroPGCTJcmdThreadPrint.java \
  65   gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java \
  66   gc/metaspace/TestMetaspacePerfCounters.java \
  67   gc/metaspace/TestPerfCountersAndMemoryPools.java \
  68   runtime/6819213/TestBootNativeLibraryPath.java \
  69   runtime/7158988/FieldMonitor.java \
  70   runtime/7194254/Test7194254.java \
  71   runtime/Metaspace/FragmentMetaspace.java \
  72   runtime/NMT/BaselineWithParameter.java \
  73   runtime/NMT/JcmdBaselineDetail.java \
  74   runtime/NMT/JcmdDetailDiff.java \
  75   runtime/NMT/JcmdScaleDetail.java \
  76   runtime/NMT/JcmdScale.java \
  77   runtime/NMT/JcmdSummaryDiff.java \
  78   runtime/NMT/JcmdWithNMTDisabled.java \
  79   runtime/NMT/MallocRoundingReportTest.java \
  80   runtime/NMT/MallocSiteHashOverflow.java \
  81   runtime/NMT/MallocStressTest.java \
  82   runtime/NMT/MallocTestType.java \
  83   runtime/NMT/MallocTrackingVerify.java \
  84   runtime/NMT/ReleaseCommittedMemory.java \
  85   runtime/NMT/ReleaseNoCommit.java \
  86   runtime/NMT/ShutdownTwice.java \
  87   runtime/NMT/SummaryAfterShutdown.java \
  88   runtime/NMT/SummarySanityCheck.java \
  89   runtime/NMT/ThreadedMallocTestType.java \
  90   runtime/NMT/ThreadedVirtualAllocTestType.java \
  91   runtime/NMT/UnsafeMallocLimit.java \
  92   runtime/NMT/VirtualAllocCommitUncommitRecommit.java \
  93   runtime/NMT/VirtualAllocTestType.java \
  94   runtime/RedefineObject/TestRedefineObject.java \
  95   runtime/Thread/TestThreadDumpMonitorContention.java \
  96   runtime/XCheckJniJsig/XCheckJSig.java \
  97   serviceability/attach/AttachWithStalePidFile.java \
  98   serviceability/sa/jmap-hprof/JMapHProfLargeHeapTest.java \
  99   serviceability/dcmd/DynLibDcmdTest.java
 100 
 101 
 102 # JRE adds further tests to compact3
 103 #
 104 jre = \
 105   :compact3 \
 106   :needs_jre \
 107  -:needs_jdk
 108 
 109 # Tests that require the full JRE
 110 #
 111 needs_jre = \
 112   compiler/6852078/Test6852078.java \
 113   compiler/7047069/Test7047069.java \
 114   runtime/6294277/SourceDebugExtension.java \
 115   runtime/ClassFile/JsrRewriting.java \
 116   runtime/ClassFile/OomWhileParsingRepeatedJsr.java
 117 
 118 # Compact 3 adds further tests to compact2
 119 #
 120 compact3 = \
 121   :compact2 \
 122   :needs_compact3 \
 123  -:needs_jre \
 124  -:needs_jdk
 125 
 126 
 127 # Tests that require compact3 API's
 128 #
 129 needs_compact3 = \
 130   gc/6581734/Test6581734.java \
 131   gc/7072527/TestFullGCCount.java \
 132   gc/g1/TestHumongousAllocInitialMark.java \
 133   gc/arguments/TestG1HeapRegionSize.java \
 134   gc/metaspace/TestMetaspaceMemoryPool.java \
 135   gc/arguments/TestDynMinHeapFreeRatio.java \
 136   gc/arguments/TestDynMaxHeapFreeRatio.java \
 137   runtime/InternalApi/ThreadCpuTimesDeadlock.java \
 138   serviceability/threads/TestFalseDeadLock.java \
 139 
 140 # Compact 2 adds full VM tests
 141 compact2 = \
 142   :compact2_minimal \
 143   :compact1 \
 144   :needs_full_vm_compact2 \
 145  -:needs_compact3 \
 146  -:needs_jre \
 147  -:needs_jdk
 148 
 149 # Tests that require compact2 API's and a full VM
 150 #
 151 needs_full_vm_compact2 =
 152 
 153 # Compact 1 adds full VM tests
 154 #
 155 compact1 = \
 156   :compact1_minimal \
 157   :needs_full_vm_compact1 \
 158  -:needs_compact2 \
 159  -:needs_full_vm_compact2 \
 160  -:needs_compact3 \
 161  -:needs_jre \
 162  -:needs_jdk
 163 
 164 # Tests that require compact1 API's and a full VM
 165 #
 166 needs_full_vm_compact1 = \
 167   runtime/NMT \
 168   gc/g1/TestRegionAlignment.java \
 169   gc/g1/TestShrinkToOneRegion.java \
 170   gc/metaspace/G1AddMetaspaceDependency.java \
 171   gc/startup_warnings/TestCMS.java \
 172   gc/startup_warnings/TestCMSIncrementalMode.java \
 173   gc/startup_warnings/TestCMSNoIncrementalMode.java \
 174   gc/startup_warnings/TestDefaultMaxRAMFraction.java \
 175   gc/startup_warnings/TestDefNewCMS.java \
 176   gc/startup_warnings/TestIncGC.java \
 177   gc/startup_warnings/TestParallelGC.java \
 178   gc/startup_warnings/TestParallelScavengeSerialOld.java \
 179   gc/startup_warnings/TestParNewCMS.java \
 180   gc/startup_warnings/TestParNewSerialOld.java \
 181   runtime/SharedArchiveFile/SharedArchiveFile.java
 182 
 183 # Minimal VM on Compact 2 adds in some compact2 tests
 184 #
 185 compact2_minimal = \
 186   :compact1_minimal \
 187   :needs_compact2 \
 188  -:needs_full_vm_compact2 \
 189  -:needs_compact3 \
 190  -:needs_jre \
 191  -:needs_jdk
 192 
 193 # Tests that require compact2 API's
 194 #
 195 needs_compact2 =
 196 
 197 # All tests that run on the most minimal configuration: Minimal VM on Compact 1
 198 compact1_minimal = \
 199   serviceability/ \
 200   compiler/ \
 201   testlibrary_tests/ \
 202   sanity/ \
 203   runtime/ \
 204   gc/ \
 205  -:needs_full_vm_compact1 \
 206  -:needs_full_vm_compact2 \
 207  -:needs_compact2 \
 208  -:needs_compact3 \
 209  -:needs_jre \
 210  -:needs_jdk
 211 
 212 # All tests that explicitly set the G1 GC
 213 #
 214 needs_g1gc = \
 215   compiler/regalloc/C1ObjectSpillInLogicOp.java \
 216   gc/8000311/Test8000311.java \
 217   gc/TestG1ZeroPGCTJcmdThreadPrint.java \
 218   gc/TestSystemGC.java \
 219   gc/arguments/TestAlignmentToUseLargePages.java \
 220   gc/arguments/TestG1HeapRegionSize.java \
 221   gc/arguments/TestG1HeapSizeFlags.java \
 222   gc/arguments/TestMaxHeapSizeTools.java \
 223   gc/arguments/TestMaxNewSize.java \
 224   gc/arguments/TestUseCompressedOopsErgo.java \
 225   gc/class_unloading/TestG1ClassUnloadingHWM.java \
 226   gc/g1/ \
 227   gc/metaspace/G1AddMetaspaceDependency.java \
 228   gc/metaspace/TestMetaspacePerfCounters.java \
 229   gc/startup_warnings/TestG1.java 
 230 
 231 # All tests that explicitly set the serial GC
 232 #
 233 needs_serialgc = \
 234   gc/TestSystemGC.java \
 235   gc/arguments/TestAlignmentToUseLargePages.java \
 236   gc/arguments/TestMaxNewSize.java \
 237   gc/arguments/TestSerialHeapSizeFlags.java \
 238   gc/arguments/TestUseCompressedOopsErgo.java \
 239   gc/defnew/HeapChangeLogging.java \
 240   gc/metaspace/TestMetaspacePerfCounters.java \
 241   gc/metaspace/TestPerfCountersAndMemoryPools.java \
 242   gc/startup_warnings/TestSerialGC.java 
 243 
 244 # All tests that explicitly set the parallel GC
 245 #
 246 needs_parallelgc = \
 247   gc/TestSystemGC.java \
 248   gc/arguments/TestAlignmentToUseLargePages.java \
 249   gc/arguments/TestMaxNewSize.java \
 250   gc/arguments/TestMinInitialErgonomics.java \
 251   gc/arguments/TestUseCompressedOopsErgo.java \
 252   gc/metaspace/TestMetaspacePerfCounters.java \
 253   gc/parallelScavenge/ \
 254   gc/startup_warnings/TestParallelGC.java \
 255   gc/startup_warnings/TestParallelScavengeSerialOld.java
 256 
 257 # All tests that explicitly set the CMS GC
 258 #
 259 needs_cmsgc = \
 260   gc/6581734/Test6581734.java \
 261   gc/TestSystemGC.java \
 262   gc/arguments/TestAlignmentToUseLargePages.java \
 263   gc/arguments/TestCMSHeapSizeFlags.java \
 264   gc/arguments/TestMaxNewSize.java \
 265   gc/arguments/TestUseCompressedOopsErgo.java \
 266   gc/class_unloading/TestCMSClassUnloadingEnabledHWM.java \
 267   gc/concurrentMarkSweep/ \
 268   gc/startup_warnings/TestCMS.java \
 269   gc/startup_warnings/TestCMSIncrementalMode.java \
 270   gc/startup_warnings/TestCMSNoIncrementalMode.java \
 271   gc/startup_warnings/TestDefNewCMS.java \
 272   gc/startup_warnings/TestParNewCMS.java
 273 
 274 # All tests that explicitly set some GC
 275 #
 276 needs_gc = \
 277   :needs_g1gc \
 278   :needs_serialgc \
 279   :needs_parallelgc \
 280   :needs_cmsgc
 281 
 282 # All tests that do not set any GC explicitly
 283 #
 284 not_needs_gc = \
 285   :jdk \
 286  -:needs_gc
 287 
 288 # All tests that could be executed with the G1 GC without VM flags conflict
 289 #
 290 applicable_g1gc = \
 291   :jdk \
 292  -:needs_serialgc \
 293  -:needs_parallelgc \
 294  -:needs_cmsgc
 295 
 296 # All tests that could be executed with the serial GC without VM flags conflict
 297 #
 298 applicable_serialgc = \
 299   :jdk \
 300  -:needs_g1gc \
 301  -:needs_parallelgc \
 302  -:needs_cmsgc
 303 
 304 # All tests that could be executed with the parallel GC without VM flags conflict
 305 #
 306 applicable_parallelgc = \
 307   :jdk \
 308  -:needs_g1gc \
 309  -:needs_serialgc \
 310  -:needs_cmsgc
 311 
 312 # All tests that could be executed with the CMS GC without VM flags conflict
 313 #
 314 applicable_cmsgc = \
 315   :jdk \
 316  -:needs_g1gc \
 317  -:needs_serialgc \
 318  -:needs_parallelgc
 319 
 320 
 321 # When called from top level the test suites use the hotspot_ prefix
 322 hotspot_wbapitest = \
 323   sanity/
 324 
 325 hotspot_compiler_1 = \
 326   compiler/5057225/Test5057225.java \
 327   compiler/5091921/Test5091921.java \
 328   compiler/5091921/Test6186134.java \
 329   compiler/5091921/Test6196102.java \
 330   compiler/5091921/Test6357214.java \
 331   compiler/5091921/Test6559156.java \
 332   compiler/5091921/Test6753639.java \
 333   compiler/5091921/Test6935022.java \
 334   compiler/5091921/Test6959129.java \
 335   compiler/5091921/Test6985295.java \
 336   compiler/5091921/Test6992759.java \
 337   compiler/5091921/Test7005594.java \
 338   compiler/5091921/Test7020614.java \
 339   compiler/6378821/Test6378821.java \
 340   compiler/6431242/Test.java \
 341   compiler/6443505/Test6443505.java \
 342   compiler/6478991/NullCheckTest.java \
 343   compiler/6539464/Test.java \
 344   compiler/6579789/Test6579789.java \
 345   compiler/6636138/ \
 346   compiler/6646019/Test.java \
 347   compiler/6659207/Test.java \
 348   compiler/6661247/Test.java \
 349   compiler/6663621/IVTest.java \
 350   compiler/6689060/Test.java \
 351   compiler/6695810/Test.java \
 352   compiler/6700047/Test6700047.java \
 353   compiler/6711100/Test.java \
 354   compiler/6724218/Test.java \
 355   compiler/6732154/Test6732154.java \
 356   compiler/6758234/Test6758234.java \
 357   compiler/6769124/ \
 358   compiler/6772683/InterruptedTest.java \
 359   compiler/6778657/Test.java \
 360   compiler/6795161/Test.java \
 361   compiler/6795362/Test6795362.java \
 362   compiler/6795465/Test6795465.java \
 363   compiler/6796786/Test6796786.java \
 364   compiler/6799693/Test.java \
 365   compiler/6805724/Test6805724.java \
 366   compiler/6814842/Test6814842.java \
 367   compiler/6823453/Test.java \
 368   compiler/6833129/Test.java \
 369   compiler/6837011/Test6837011.java \
 370   compiler/6843752/Test.java \
 371   compiler/6849574/Test.java \
 372   compiler/6855164/Test.java \
 373   compiler/6855215/Test6855215.java \
 374   compiler/6857159/Test6857159.java \
 375   compiler/6860469/Test.java \
 376   compiler/6863155/Test6863155.java \
 377   compiler/6863420/Test.java \
 378   compiler/6865265/StackOverflowBug.java \
 379   compiler/6879902/Test6879902.java \
 380   compiler/6880034/Test6880034.java \
 381   compiler/6891750/Test6891750.java \
 382   compiler/6892265/Test.java \
 383   compiler/6894807/IsInstanceTest.java \
 384   compiler/6901572/Test.java \
 385   compiler/6909839/Test6909839.java \
 386   compiler/6910484/Test.java \
 387   compiler/6910605/Test.java \
 388   compiler/6910618/Test.java \
 389   compiler/6916644/Test6916644.java \
 390   compiler/6921969/TestMultiplyLongHiZero.java \
 391   compiler/6930043/Test6930043.java \
 392   compiler/6932496/Test6932496.java \
 393   compiler/6956668/Test6956668.java \
 394   compiler/6968348/Test6968348.java \
 395   compiler/6973329/Test.java
 396 
 397 hotspot_compiler_2 = \
 398   compiler/6982370/Test6982370.java \
 399   compiler/7009231/Test7009231.java \
 400   compiler/7009359/Test7009359.java \
 401   compiler/7017746/Test.java \
 402   compiler/7024475/Test7024475.java \
 403   compiler/7041100/Test7041100.java \
 404   compiler/7044738/Test7044738.java \
 405   compiler/7046096/Test7046096.java \
 406   compiler/7048332/Test7048332.java \
 407   compiler/7068051/Test7068051.java \
 408   compiler/7082949/Test7082949.java \
 409   compiler/7088020/Test7088020.java \
 410   compiler/7090976/Test7090976.java \
 411   compiler/7103261/Test7103261.java \
 412   compiler/7110586/Test7110586.java \
 413   compiler/7119644/ \
 414   compiler/7141637/SpreadNullArg.java \
 415   compiler/7169782/Test7169782.java \
 416   compiler/7174363/Test7174363.java \
 417   compiler/7179138/ \
 418   compiler/7190310/ \
 419   compiler/7192963/ \
 420   compiler/7200264/TestIntVect.java \
 421   compiler/8000805/Test8000805.java \
 422   compiler/8002069/Test8002069.java \
 423   compiler/8004741/Test8004741.java \
 424   compiler/8005033/Test8005033.java \
 425   compiler/8005419/Test8005419.java \
 426   compiler/8005956/PolynomialRoot.java \
 427   compiler/8007294/Test8007294.java
 428 
 429 hotspot_compiler_3 = \
 430   compiler/8007722/Test8007722.java \
 431   compiler/8009761/Test8009761.java \
 432   compiler/8010927/Test8010927.java \
 433   compiler/8011706/Test8011706.java \
 434   compiler/8011771/Test8011771.java \
 435   compiler/8011901/Test8011901.java \
 436   compiler/arraycopy/TestMissingControl.java \
 437   compiler/ciReplay/TestVM_no_comp_level.sh \
 438   compiler/classUnloading/anonymousClass/TestAnonymousClassUnloading.java \
 439   compiler/codecache/CheckUpperLimit.java \
 440   compiler/codegen/ \
 441   compiler/cpuflags/RestoreMXCSR.java \
 442   compiler/EscapeAnalysis/ \
 443   compiler/exceptions/TestRecursiveReplacedException.java \
 444   compiler/floatingpoint/ModNaN.java \
 445   compiler/gcbarriers/G1CrashTest.java \
 446   compiler/inlining/ \
 447   compiler/IntegerArithmetic/TestIntegerComparison.java \
 448   compiler/intrinsics/bmi/TestAndnI.java \
 449   compiler/intrinsics/bmi/TestAndnI.java \
 450   compiler/intrinsics/bmi/TestAndnL.java \
 451   compiler/intrinsics/bmi/TestBlsiI.java \
 452   compiler/intrinsics/bmi/TestBlsiL.java \
 453   compiler/intrinsics/bmi/TestBlsmskI.java \
 454   compiler/intrinsics/bmi/TestBlsmskL.java \
 455   compiler/intrinsics/bmi/TestBlsrI.java \
 456   compiler/intrinsics/bmi/TestBlsrL.java \
 457   compiler/intrinsics/bmi/TestLzcntI.java \
 458   compiler/intrinsics/bmi/TestLzcntL.java \
 459   compiler/intrinsics/bmi/TestTzcntI.java \
 460   compiler/intrinsics/bmi/TestTzcntL.java \
 461   compiler/intrinsics/clone/TestObjectClone.java \
 462   compiler/intrinsics/hashcode/TestHashCode.java \
 463   compiler/intrinsics/mathexact/CompareTest.java \
 464   compiler/intrinsics/mathexact/GVNTest.java \
 465   compiler/intrinsics/mathexact/NegExactILoadTest.java \
 466   compiler/intrinsics/mathexact/NegExactILoopDependentTest.java \
 467   compiler/intrinsics/mathexact/NegExactINonConstantTest.java \
 468   compiler/intrinsics/mathexact/SubExactICondTest.java \
 469   compiler/intrinsics/mathexact/SubExactILoadTest.java \
 470   compiler/intrinsics/mathexact/SubExactILoopDependentTest.java \
 471   compiler/intrinsics/stringequals/TestStringEqualsBadLength.java \
 472   compiler/intrinsics/unsafe/UnsafeGetAddressTest.java \
 473   compiler/jsr292/ConcurrentClassLoadingTest.java \
 474   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java \
 475   compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java \
 476   compiler/loopopts/TestLogSum.java \
 477   compiler/macronodes/TestEliminateAllocationPhi.java \
 478   compiler/membars/TestMemBarAcquire.java \
 479   compiler/osr/TestOSRWithNonEmptyStack.java \
 480   compiler/profiling/TestMethodHandleInvokesIntrinsic.java \
 481   compiler/profiling/TestSpecTrapClassUnloading.java \
 482   compiler/profiling/TestUnexpectedProfilingMismatch.java \
 483   compiler/regalloc/C1ObjectSpillInLogicOp.java \
 484   compiler/startup/NumCompilerThreadsCheck.java \
 485   compiler/startup/SmallCodeCacheStartup.java \
 486   compiler/types/TestSpeculationFailedHigherEqual.java \
 487   compiler/types/TypeSpeculation.java \
 488   compiler/uncommontrap/StackOverflowGuardPagesOff.java \
 489   compiler/uncommontrap/TestStackBangMonitorOwned.java \
 490   compiler/uncommontrap/TestStackBangRbp.java \
 491   compiler/unsafe/GetUnsafeObjectG1PreBarrier.java
 492   
 493 
 494 hotspot_compiler_closed = \
 495   closed/compiler/4292742/Test.java \
 496   closed/compiler/4474154/Test4474154.java \
 497   closed/compiler/4482613/Test4482613.java \
 498   closed/compiler/4490177/tctest.java \
 499   closed/compiler/4495990/Application.java \
 500   closed/compiler/4522874/Test4522874.sh \
 501   closed/compiler/4629512/Test4629512.java \
 502   closed/compiler/4647299/Looper.java \
 503   closed/compiler/4655758/TestClass.java \
 504   closed/compiler/4671453/LongCompTest.java \
 505   closed/compiler/4671460/CharArrTest.java \
 506   closed/compiler/4709105/StringTest2.java \
 507   closed/compiler/4732721/Bug.java \
 508   closed/compiler/4750681/ReadTest.java \
 509   closed/compiler/4787943/LongCrash.java \
 510   closed/compiler/4819903/Base64Test.java \
 511   closed/compiler/4903383/Test.java \
 512   closed/compiler/4906393/Test.java \
 513   closed/compiler/4907999/Uidtest.java \
 514   closed/compiler/4917709/Tester.java \
 515   closed/compiler/4957832/Test.java \
 516   closed/compiler/4965430/LoopTest.java \
 517   closed/compiler/4979449/T4979449.java \
 518   closed/compiler/5031274/Test.java \
 519   closed/compiler/5043395/T5043395.java \
 520   closed/compiler/5049410/Test.java \
 521   closed/compiler/5098422/Test.java \
 522   closed/compiler/6173783/Test.java \
 523   closed/compiler/6272923/Test6272923.sh \
 524   closed/compiler/6290963/Test.java \
 525   closed/compiler/6305546/Test.java \
 526   closed/compiler/6309806/Test.java \
 527   closed/compiler/6311859/Test.java \
 528   closed/compiler/6321689/Test.java \
 529   closed/compiler/6326935/Test.java \
 530   closed/compiler/6367889/Test.java \
 531   closed/compiler/6371167/Test.java \
 532   closed/compiler/6389127/Test.java \
 533   closed/compiler/6397650/Test.java \
 534   closed/compiler/6414932/Test.java \
 535   closed/compiler/6421619/Test_6421619.java \
 536   closed/compiler/6427750/UnsafeVolatile.java \
 537   closed/compiler/6431243/Test.java \
 538   closed/compiler/6433572/TestSyncJSR.java \
 539   closed/compiler/6433840/clinit.java \
 540   closed/compiler/6457854/Test.java \
 541   closed/compiler/6476804/Test.java \
 542   closed/compiler/6512111/CorruptFinalLong.java \
 543   closed/compiler/6551887/Test.java \
 544   closed/compiler/6571539/Test.java \
 545   closed/compiler/6587132/Test.java \
 546   closed/compiler/6588045/Test.java \
 547   closed/compiler/6588598/etype.java \
 548   closed/compiler/6661918/Test6661918.java \
 549   closed/compiler/6707044/Test.java \
 550   closed/compiler/6730716/Test.java \
 551   closed/compiler/6772368/Test6772368.sh \
 552   closed/compiler/6897150/Test6897150.java \
 553   closed/compiler/6931567/Test6931567.java \
 554   closed/compiler/7196857/Test7196857.java \
 555   closed/compiler/8009699/Test8009699.java \
 556   closed/compiler/8009699/Test8009699B.java \
 557   closed/compiler/8014811/Test8014811.java \
 558   closed/compiler/8029507/InvokePrivate.java \
 559   closed/compiler/callingConvention/Arg9Double.java \
 560   closed/compiler/deoptimization/DeoptArithmetic.java \
 561   closed/compiler/deoptimization/TestDoubleLocals.java \
 562   closed/compiler/deoptimization/TestDoubleMerge.java
 563 
 564 hotspot_gc = \
 565   sanity/ExecuteInternalVMTests.java
 566 
 567 hotspot_runtime = \
 568   runtime/ \
 569  -runtime/6888954/vmerrors.sh \
 570  -runtime/RedefineObject/TestRedefineObject.java \
 571  -runtime/8003720/Test8003720.java \
 572  -runtime/Metaspace/FragmentMetaspace.java \
 573  -runtime/Metaspace/FragmentMetaspaceSimple.java \
 574  -runtime/Thread/TestThreadDumpMonitorContention.java \
 575  -runtime/SharedArchiveFile/SharedBaseAddress.java \
 576  -runtime/memory/ReserveMemory.java \
 577  -runtime/Unsafe/RangeCheck.java \
 578  -runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
 579  -runtime/SharedArchiveFile/DefaultUseWithClient.java \
 580  -runtime/Thread/CancellableThreadTest.java \
 581  -runtime/7158988/FieldMonitor.java
 582 
 583 hotspot_runtime_closed = \
 584   sanity/ExecuteInternalVMTests.java
 585 
 586 hotspot_serviceability = \
 587   sanity/ExecuteInternalVMTests.java \
 588   serviceability/dcmd/compiler
 589 
 590 hotspot_all = \
 591   :hotspot_compiler_1 \
 592   :hotspot_compiler_2 \
 593   :hotspot_compiler_3 \
 594   :hotspot_compiler_closed \
 595   :hotspot_gc \
 596   :hotspot_runtime \
 597   :hotspot_serviceability