1 # 2 # Copyright (c) 2013, 2020, 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 -compiler/graalunit 38 39 hotspot_compiler_all_gcs = \ 40 :hotspot_compiler \ 41 -:tier1_compiler_aot_jvmci \ 42 -compiler/graalunit 43 44 hotspot_gc = \ 45 gc \ 46 -gc/nvdimm 47 48 # By design this group should include ALL tests under runtime sub-directory 49 hotspot_runtime = \ 50 runtime 51 52 hotspot_handshake = \ 53 runtime/handshake 54 55 hotspot_serviceability = \ 56 serviceability 57 58 hotspot_resourcehogs = \ 59 resourcehogs 60 61 hotspot_misc = \ 62 / \ 63 -applications \ 64 -vmTestbase \ 65 -:hotspot_compiler \ 66 -:hotspot_gc \ 67 -:hotspot_runtime \ 68 -:hotspot_serviceability \ 69 -gc/nvdimm \ 70 -:hotspot_containers 71 72 hotspot_native_sanity = \ 73 native_sanity 74 75 hotspot_containers = \ 76 containers 77 78 tier1_common = \ 79 sanity/BasicVMTest.java \ 80 gtest/GTestWrapper.java 81 82 tier1_compiler = \ 83 :tier1_compiler_1 \ 84 :tier1_compiler_2 \ 85 :tier1_compiler_3 \ 86 :tier1_compiler_not_xcomp 87 88 hotspot_not_fast_compiler = \ 89 :hotspot_compiler \ 90 -:tier1_compiler \ 91 -:hotspot_slow_compiler \ 92 -compiler/graalunit 93 94 hotspot_slow_compiler = \ 95 compiler/codegen/aes \ 96 compiler/codecache/stress \ 97 compiler/gcbarriers/PreserveFPRegistersTest.java 98 99 tier1_compiler_1 = \ 100 compiler/arraycopy/ \ 101 compiler/c1/ \ 102 compiler/c2/ \ 103 -compiler/c2/Test6850611.java \ 104 -compiler/c2/cr6890943/Test6890943.java \ 105 -compiler/c2/Test6905845.java \ 106 -compiler/c2/cr6340864 \ 107 -compiler/c2/cr6589834 \ 108 -compiler/c2/cr8004867 \ 109 -compiler/c2/stemmer \ 110 -compiler/c2/Test6792161.java \ 111 -compiler/c2/Test6603011.java \ 112 -compiler/c2/Test6912517.java \ 113 114 tier1_compiler_2 = \ 115 compiler/classUnloading/ \ 116 compiler/codecache/ \ 117 compiler/codegen/ \ 118 compiler/cpuflags/ \ 119 compiler/dependencies/ \ 120 compiler/eliminateAutobox/ \ 121 compiler/escapeAnalysis/ \ 122 compiler/exceptions/ \ 123 compiler/floatingpoint/ \ 124 compiler/gcbarriers/ \ 125 compiler/inlining/ \ 126 compiler/integerArithmetic/ \ 127 compiler/interpreter/ \ 128 compiler/jvmci/ \ 129 -:hotspot_slow_compiler 130 131 tier1_compiler_3 = \ 132 compiler/intrinsics/ \ 133 compiler/jsr292/ \ 134 compiler/loopopts/ \ 135 compiler/macronodes/ \ 136 compiler/memoryinitialization/ \ 137 compiler/osr/ \ 138 compiler/regalloc/ \ 139 compiler/runtime/ \ 140 compiler/startup/ \ 141 compiler/types/ \ 142 compiler/uncommontrap/ \ 143 compiler/unsafe/ \ 144 compiler/vectorization/ \ 145 -compiler/intrinsics/bmi \ 146 -compiler/intrinsics/mathexact \ 147 -compiler/intrinsics/sha \ 148 -compiler/intrinsics/bigInteger/TestMultiplyToLen.java \ 149 -compiler/intrinsics/zip/TestAdler32.java \ 150 -compiler/loopopts/Test7052494.java \ 151 -compiler/runtime/Test6826736.java 152 153 tier1_compiler_not_xcomp = \ 154 compiler/aot \ 155 compiler/profiling 156 157 tier1_compiler_aot_jvmci = \ 158 compiler/aot \ 159 compiler/jvmci 160 161 tier1_compiler_graal = \ 162 compiler/graalunit/HotspotTest.java 163 164 ctw_1 = \ 165 applications/ctw/modules/ \ 166 -:ctw_2 \ 167 -:ctw_3 168 169 ctw_2 = \ 170 applications/ctw/modules/java_base.java \ 171 applications/ctw/modules/java_base_2.java \ 172 applications/ctw/modules/java_desktop.java \ 173 applications/ctw/modules/java_desktop_2.java 174 175 ctw_3 = \ 176 applications/ctw/modules/java_xml.java \ 177 applications/ctw/modules/jdk_compiler.java \ 178 applications/ctw/modules/jdk_internal_vm_compiler.java \ 179 applications/ctw/modules/jdk_localedata.java \ 180 applications/ctw/modules/jdk_localedata_2.java 181 182 tier1_gc = \ 183 :tier1_gc_1 \ 184 :tier1_gc_2 \ 185 :tier1_gc_gcold \ 186 :tier1_gc_gcbasher \ 187 :tier1_gc_shenandoah 188 189 hotspot_not_fast_gc = \ 190 :hotspot_gc \ 191 -:tier1_gc 192 193 tier1_gc_1 = \ 194 :gc_epsilon \ 195 gc/g1/ \ 196 -gc/g1/ihop/TestIHOPErgo.java 197 198 tier1_gc_2 = \ 199 gc/ \ 200 -:gc_epsilon \ 201 -gc/g1/ \ 202 -gc/logging/TestUnifiedLoggingSwitchStress.java \ 203 -gc/stress \ 204 -gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java \ 205 -gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java \ 206 -gc/shenandoah \ 207 -gc/nvdimm 208 209 gc_epsilon = \ 210 gc/epsilon/ \ 211 gc/CriticalNativeArgs.java \ 212 gc/stress/CriticalNativeStress.java 213 214 tier1_gc_gcold = \ 215 gc/stress/gcold/TestGCOldWithG1.java \ 216 gc/stress/gcold/TestGCOldWithSerial.java \ 217 gc/stress/gcold/TestGCOldWithParallel.java 218 219 tier1_gc_gcbasher = \ 220 gc/stress/gcbasher/TestGCBasherWithG1.java \ 221 gc/stress/gcbasher/TestGCBasherWithSerial.java \ 222 gc/stress/gcbasher/TestGCBasherWithParallel.java 223 224 tier1_gc_shenandoah = \ 225 gc/shenandoah/options/ \ 226 gc/shenandoah/compiler/ \ 227 gc/shenandoah/mxbeans/ \ 228 gc/shenandoah/TestSmallHeap.java \ 229 gc/shenandoah/oom/ \ 230 gc/CriticalNativeArgs.java 231 232 tier2_gc_shenandoah = \ 233 runtime/MemberName/MemberNameLeak.java \ 234 runtime/CompressedOops/UseCompressedOops.java \ 235 gc/TestHumongousReferenceObject.java \ 236 gc/TestSystemGC.java \ 237 gc/arguments/TestDisableDefaultGC.java \ 238 gc/arguments/TestUseCompressedOopsErgo.java \ 239 gc/arguments/TestAlignmentToUseLargePages.java \ 240 gc/class_unloading/TestClassUnloadingDisabled.java \ 241 gc/ergonomics/TestInitialGCThreadLogging.java \ 242 gc/ergonomics/TestDynamicNumberOfGCThreads.java \ 243 gc/logging/TestGCId.java \ 244 gc/logging/TestMetaSpaceLog.java \ 245 gc/metaspace/TestMetaspacePerfCounters.java \ 246 gc/metaspace/TestMetaspacePerfCounters.java \ 247 gc/startup_warnings/TestShenandoah.java \ 248 gc/TestFullGCALot.java \ 249 gc/logging/TestUnifiedLoggingSwitchStress.java \ 250 runtime/Metaspace/DefineClass.java \ 251 gc/shenandoah/ \ 252 serviceability/sa/TestHeapDumpForInvokeDynamic.java \ 253 -gc/shenandoah/TestStringDedupStress.java \ 254 -gc/stress/CriticalNativeStress.java \ 255 -:tier1_gc_shenandoah 256 257 tier3_gc_shenandoah = \ 258 gc/stress/gcold/TestGCOldWithShenandoah.java \ 259 gc/stress/gcbasher/TestGCBasherWithShenandoah.java \ 260 gc/stress/gclocker/TestGCLockerWithShenandoah.java \ 261 gc/stress/systemgc/TestSystemGCWithShenandoah.java \ 262 gc/shenandoah/TestStringDedupStress.java \ 263 gc/stress/CriticalNativeStress.java \ 264 -:tier2_gc_shenandoah 265 266 hotspot_gc_shenandoah = \ 267 :tier1_gc_shenandoah \ 268 :tier2_gc_shenandoah \ 269 :tier3_gc_shenandoah 270 271 tier1_runtime = \ 272 runtime/ \ 273 -runtime/6626217/bug_21227.java \ 274 -runtime/7100935 \ 275 -runtime/7158988/FieldMonitor.java \ 276 -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \ 277 -runtime/CommandLine/PrintGCApplicationConcurrentTime.java \ 278 -runtime/CompressedOops/UseCompressedOops.java \ 279 -runtime/ConstantPool/IntfMethod.java \ 280 -runtime/ErrorHandling/CreateCoredumpOnCrash.java \ 281 -runtime/ErrorHandling/ErrorHandler.java \ 282 -runtime/ErrorHandling/TestHeapDumpOnOutOfMemoryError.java \ 283 -runtime/ErrorHandling/TestHeapDumpOnOutOfMemoryErrorInMetaspace.java \ 284 -runtime/ErrorHandling/TimeoutInErrorHandlingTest.java \ 285 -runtime/InvocationTests \ 286 -runtime/logging/MonitorMismatchTest.java \ 287 -runtime/memory/ReserveMemory.java \ 288 -runtime/memory/RunUnitTestsConcurrently.java \ 289 -runtime/Metaspace/FragmentMetaspace.java \ 290 -runtime/Metaspace/FragmentMetaspaceSimple.java \ 291 -runtime/MirrorFrame/Test8003720.java \ 292 -runtime/modules/LoadUnloadModuleStress.java \ 293 -runtime/modules/ModuleStress/ExportModuleStressTest.java \ 294 -runtime/modules/ModuleStress/ModuleStressGC.java \ 295 -runtime/NMT \ 296 -runtime/ReservedStack \ 297 -runtime/SelectionResolution/AbstractMethodErrorTest.java \ 298 -runtime/SelectionResolution/IllegalAccessErrorTest.java \ 299 -runtime/SelectionResolution/InvokeInterfaceICCE.java \ 300 -runtime/SelectionResolution/InvokeInterfaceSuccessTest.java \ 301 -runtime/SelectionResolution/InvokeSpecialICCE.java \ 302 -runtime/SelectionResolution/InvokeSpecialSuccessTest.java \ 303 -runtime/SelectionResolution/InvokeStaticICCE.java \ 304 -runtime/SelectionResolution/InvokeVirtualICCE.java \ 305 -runtime/SelectionResolution/InvokeVirtualSuccessTest.java \ 306 -runtime/cds/CdsSameObjectAlignment.java \ 307 -runtime/cds/SharedBaseAddress.java \ 308 -runtime/Thread/CancellableThreadTest.java \ 309 -runtime/Thread/TestThreadDumpMonitorContention.java \ 310 -runtime/Unsafe/RangeCheck.java \ 311 sanity/ \ 312 -:tier1_runtime_appcds_exclude \ 313 -runtime/signal 314 315 hotspot_cds = \ 316 runtime/cds/ \ 317 runtime/CompressedOops/ 318 319 320 hotspot_appcds_dynamic = \ 321 runtime/cds/appcds/ \ 322 -runtime/cds/appcds/cacheObject \ 323 -runtime/cds/appcds/customLoader \ 324 -runtime/cds/appcds/dynamicArchive \ 325 -runtime/cds/appcds/loaderConstraints/DynamicLoaderConstraintsTest.java \ 326 -runtime/cds/appcds/javaldr/ArrayTest.java \ 327 -runtime/cds/appcds/javaldr/GCSharedStringsDuringDump.java \ 328 -runtime/cds/appcds/javaldr/HumongousDuringDump.java \ 329 -runtime/cds/appcds/javaldr/LockDuringDump.java \ 330 -runtime/cds/appcds/sharedStrings \ 331 -runtime/cds/appcds/ArchiveRelocationTest.java \ 332 -runtime/cds/appcds/DumpClassList.java \ 333 -runtime/cds/appcds/ExtraSymbols.java \ 334 -runtime/cds/appcds/LongClassListPath.java \ 335 -runtime/cds/appcds/LotsOfClasses.java \ 336 -runtime/cds/appcds/NonExistClasspath.java \ 337 -runtime/cds/appcds/RelativePath.java \ 338 -runtime/cds/appcds/SharedArchiveConsistency.java \ 339 -runtime/cds/appcds/TestCombinedCompressedFlags.java \ 340 -runtime/cds/appcds/TestZGCWithCDS.java \ 341 -runtime/cds/appcds/UnusedCPDuringDump.java \ 342 -runtime/cds/appcds/VerifierTest_1B.java 343 344 hotspot_cds_relocation = \ 345 gc/g1/TestSharedArchiveWithPreTouch.java \ 346 runtime/cds \ 347 runtime/modules/ModulesSymLink.java \ 348 runtime/modules/PatchModule/PatchModuleCDS.java \ 349 runtime/modules/PatchModule/PatchModuleClassList.java \ 350 runtime/NMT \ 351 serviceability/sa \ 352 -runtime/cds/DeterministicDump.java 353 354 # A subset of AppCDS tests to be run in tier1 355 tier1_runtime_appcds = \ 356 runtime/cds/appcds/HelloTest.java \ 357 runtime/cds/appcds/sharedStrings/SharedStringsBasic.java \ 358 runtime/cds/appcds/ClassLoaderTest.java 359 360 tier1_runtime_appcds_exclude = \ 361 runtime/cds/appcds/ \ 362 -:tier1_runtime_appcds 363 364 # This group should be executed with "jtreg -Dtest.cds.run.with.jfr=true ..." 365 # to test interaction between AppCDS and JFR. It also has the side effect of 366 # testing JVMTI ClassFileLoadHook. 367 # 368 # The excluded tests disallow the jdk.jfr module, which is required to 369 # run with JFR. 370 hotspot_appcds_with_jfr = \ 371 runtime/cds/appcds/ \ 372 -runtime/cds/appcds/cacheObject/ArchivedModuleCompareTest.java \ 373 -runtime/cds/appcds/jigsaw/classpathtests/BootAppendTests.java \ 374 -runtime/cds/appcds/jigsaw/classpathtests/ClassPathTests.java \ 375 -runtime/cds/appcds/jigsaw/classpathtests/EmptyClassInBootClassPath.java \ 376 -runtime/cds/appcds/jigsaw/JigsawOptionsCombo.java \ 377 -runtime/cds/appcds/jigsaw/modulepath/MainModuleOnly.java 378 379 tier1_serviceability = \ 380 serviceability/ \ 381 -serviceability/dcmd/compiler/CompilerQueueTest.java \ 382 -serviceability/jvmti/RedefineClasses/RedefineLeak.java \ 383 -serviceability/jvmti/RedefineClasses/RedefinePreviousVersions.java \ 384 -serviceability/jvmti/RedefineClasses/RedefineRunningMethods.java \ 385 -serviceability/jvmti/RedefineClasses/RedefineRunningMethodsWithBacktrace.java \ 386 -serviceability/jvmti/RedefineClasses/TestRedefineObject.java \ 387 -serviceability/sa/ClhsdbScanOops.java \ 388 -serviceability/sa/ClhsdbJstackXcompStress.java \ 389 -serviceability/sa/TestJmapCore.java \ 390 -serviceability/sa/TestJmapCoreMetaspace.java 391 392 tier1 = \ 393 :tier1_common \ 394 :tier1_compiler \ 395 :tier1_gc \ 396 :tier1_runtime \ 397 :tier1_serviceability 398 399 hotspot_tier2_runtime = \ 400 runtime/ \ 401 -runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \ 402 -runtime/CompressedOops/UseCompressedOops.java \ 403 -runtime/InvocationTests \ 404 -runtime/Thread/TestThreadDumpMonitorContention.java \ 405 -:tier1_runtime \ 406 -:hotspot_tier2_runtime_platform_agnostic \ 407 -runtime/signal \ 408 -runtime/NMT/MallocStressTest.java 409 410 hotspot_tier2_serviceability = \ 411 serviceability/ \ 412 -:tier1_serviceability 413 414 hotspot_tier2_runtime_platform_agnostic = \ 415 runtime/SelectionResolution \ 416 -:tier1_runtime 417 418 hotspot_tier3_runtime = \ 419 runtime/ \ 420 -:tier1_runtime \ 421 -:hotspot_tier2_runtime_platform_agnostic \ 422 -:hotspot_tier2_runtime 423 424 hotspot_runtime_minimalvm = \ 425 runtime/MinimalVM \ 426 runtime/ErrorHandling \ 427 runtime/logging 428 429 hotspot_nmt = \ 430 runtime/NMT 431 432 hotspot_rest_runtime = \ 433 :hotspot_runtime \ 434 -:tier1_runtime \ 435 -:tier1_runtime_appcds_exclude \ 436 -:hotspot_nmt \ 437 -:hotspot_tier2_runtime_platform_agnostic 438 439 jcstress_part1 = \ 440 applications/jcstress/seqcst.java 441 442 jcstress_part2 = \ 443 applications/jcstress/accessAtomic.java \ 444 applications/jcstress/acqrel.java \ 445 applications/jcstress/atomics.java \ 446 applications/jcstress/coherence.java \ 447 applications/jcstress/locks.java 448 449 jcstress_part3 = \ 450 applications/jcstress \ 451 -:jcstress_part1 \ 452 -:jcstress_part2 453 454 # Stress tests against information provided by VM via JMX 455 vmTestbase_nsk_monitoring = \ 456 vmTestbase/nsk/monitoring 457 458 # Tests for default method implementation 459 vmTestbase_vm_defmeth = \ 460 vmTestbase/vm/runtime/defmeth 461 462 # JDI tests 463 vmTestbase_nsk_jdi = \ 464 vmTestbase/nsk/jdi 465 466 # Stress tests for classes loading/unloading 467 # NSK tests for functionality of the HS system dictionary 468 vmTestbase_nsk_sysdict = \ 469 vmTestbase/nsk/sysdict/vm/stress 470 471 vmTestbase_vm_metaspace = \ 472 vmTestbase/metaspace 473 474 # JVMTI tests 475 vmTestbase_nsk_jvmti = \ 476 vmTestbase/nsk/jvmti \ 477 vmTestbase/nsk/share/ExceptionCheckingJniEnv 478 479 # JDWP tests 480 vmTestbase_nsk_jdwp = \ 481 vmTestbase/nsk/jdwp 482 483 vmTestbase_nsk_stress = \ 484 vmTestbase/nsk/stress 485 486 vmTestbase_vm_g1classunloading = \ 487 vmTestbase/gc/g1/unloading/tests 488 489 # Garbage collector tests 490 vmTestbase_vm_gc = \ 491 :vmTestbase_vm_gc_concurrent \ 492 :vmTestbase_vm_gc_container \ 493 :vmTestbase_vm_gc_compact \ 494 :vmTestbase_vm_gc_juggle \ 495 :vmTestbase_vm_gc_locker \ 496 :vmTestbase_vm_gc_misc \ 497 :vmTestbase_vm_gc_ref 498 499 # In a loop: fill out the heap until OOME and then partly clear it. Variate object type and size 500 vmTestbase_vm_gc_compact = \ 501 vmTestbase/vm/gc/compact 502 503 # GC and mutlithreads 504 vmTestbase_vm_gc_concurrent = \ 505 vmTestbase/vm/gc/concurrent 506 507 # Various data structures 508 vmTestbase_vm_gc_container = \ 509 vmTestbase/vm/gc/containers \ 510 vmTestbase/gc/vector 511 512 # Playing with object arrays and various strategies of garbage producing 513 vmTestbase_vm_gc_juggle = \ 514 vmTestbase/gc/ArrayJuggle/ \ 515 vmTestbase/gc/memory/Array/ArrayJuggle 516 517 # GC Locker 518 vmTestbase_vm_gc_locker = \ 519 vmTestbase/gc/lock \ 520 vmTestbase/gc/gctests/mallocWithGC1/mallocWithGC1.java \ 521 vmTestbase/gc/gctests/mallocWithGC2/mallocWithGC2.java \ 522 vmTestbase/gc/gctests/mallocWithGC3/mallocWithGC3.java \ 523 vmTestbase/gc/gctests/nativeGC01/nativeGC01.java \ 524 vmTestbase/gc/gctests/nativeGC02/nativeGC02.java \ 525 vmTestbase/gc/gctests/nativeGC03/nativeGC03.java \ 526 vmTestbase/gc/gctests/nativeGC05/nativeGC05.java 527 528 # GC and references 529 vmTestbase_vm_gc_ref = \ 530 vmTestbase/gc/gctests/SoftReference \ 531 vmTestbase/gc/gctests/WeakReference \ 532 vmTestbase/gc/gctests/WeakReferenceGC \ 533 vmTestbase/gc/gctests/PhantomReference \ 534 vmTestbase/gc/gctests/ReferencesGC 535 536 # miscellaneous gc tests 537 vmTestbase_vm_gc_misc = \ 538 vmTestbase/gc \ 539 vmTestbase/vm/gc \ 540 -:vmTestbase_vm_g1classunloading \ 541 -:vmTestbase_vm_gc_compact \ 542 -:vmTestbase_vm_gc_concurrent \ 543 -:vmTestbase_vm_gc_container \ 544 -:vmTestbase_vm_gc_juggle \ 545 -:vmTestbase_vm_gc_locker \ 546 -:vmTestbase_vm_gc_ref 547 548 vmTestbase_largepages = \ 549 vmTestbase/gc/gctests/LoadUnloadGC \ 550 vmTestbase/gc/gctests/LoadUnloadGC2 \ 551 vmTestbase/gc/memory/LargePagesTest \ 552 vmTestbase/gc/memory/Nio \ 553 vmTestbase/metaspace/staticReferences/StaticReferences.java \ 554 vmTestbase/metaspace/stressDictionary/StressDictionary.java \ 555 vmTestbase/metaspace/stressHierarchy/stressHierarchy001/TestDescription.java \ 556 vmTestbase/metaspace/stressHierarchy/stressHierarchy011/TestDescription.java \ 557 vmTestbase/metaspace/flags/maxMetaspaceSize/TestMaxMetaspaceSize.java \ 558 vmTestbase/metaspace/shrink_grow/ShrinkGrowTest/ShrinkGrowTest.java \ 559 vmTestbase/metaspace/shrink_grow/ShrinkGrowMultiJVM/ShrinkGrowMultiJVM.java \ 560 vmTestbase/metaspace/shrink_grow/CompressedClassSpaceSize/TestDescription.java 561 562 # Just-In-Time compiler tests 563 vmTestbase_vm_compiler = \ 564 vmTestbase/vm/compiler \ 565 vmTestbase/jit \ 566 vmTestbase/vm/jit 567 568 # JSR292 tests (invokedynamic AKA Multi-Language VM AKA Da Vinci Machine) 569 vmTestbase_vm_mlvm = \ 570 vmTestbase/vm/mlvm 571 572 # Tests for attach-on-demand implementation 573 vmTestbase_nsk_aod = \ 574 vmTestbase/nsk/aod 575 576 # JDB tests 577 vmTestbase_nsk_jdb = \ 578 vmTestbase/nsk/jdb 579 580 # vmTestbase_*_quick groups are defined in TEST.quick-groups