1 # Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved. 2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # 4 # This code is free software; you can redistribute it and/or modify it 5 # under the terms of the GNU General Public License version 2 only, as 6 # published by the Free Software Foundation. 7 # 8 # This code is distributed in the hope that it will be useful, but WITHOUT 9 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 11 # version 2 for more details (a copy is included in the LICENSE file that 12 # accompanied this code). 13 # 14 # You should have received a copy of the GNU General Public License version 15 # 2 along with this work; if not, write to the Free Software Foundation, 16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17 # 18 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 # or visit www.oracle.com if you need additional information or have any 20 # questions. 21 # 22 23 ############################################################################### 24 # 25 # Tiered testing definitions 26 # 27 28 tier1 = \ 29 :jdk_lang \ 30 -java/lang/ProcessHandle/TreeTest.java \ 31 -java/util/zip/TestLocalTime.java \ 32 :jdk_util \ 33 -java/util/WeakHashMap/GCDuringIteration.java \ 34 -java/util/concurrent/ThreadPoolExecutor/ConfigChanges.java \ 35 -java/util/concurrent/forkjoin/FJExceptionTableLeak.java \ 36 sun/nio/cs/ISO8859x.java \ 37 java/nio/Buffer \ 38 com/sun/crypto/provider/Cipher \ 39 :jdk_math 40 41 tier2 = \ 42 java/lang/ProcessHandle/TreeTest.java \ 43 java/util/zip/TestLocalTime.java \ 44 java/util/WeakHashMap/GCDuringIteration.java \ 45 java/util/concurrent/ThreadPoolExecutor/ConfigChanges.java \ 46 java/util/concurrent/forkjoin/FJExceptionTableLeak.java \ 47 :jdk_io \ 48 :jdk_nio \ 49 -sun/nio/cs/ISO8859x.java \ 50 -java/nio/Buffer \ 51 :jdk_net \ 52 :jdk_time \ 53 :jdk_security \ 54 -com/sun/crypto/provider/Cipher \ 55 :jdk_text \ 56 :core_tools \ 57 :jdk_other 58 59 tier3 = \ 60 :jdk_rmi \ 61 :jdk_beans \ 62 :jdk_imageio \ 63 :jdk_sound 64 65 ############################################################################### 66 # 67 # Other test definitions; generally smaller granularity than tiers 68 # 69 70 # java.lang package and VM runtime support 71 jdk_lang = \ 72 java/lang \ 73 -java/lang/management \ 74 -java/lang/instrument \ 75 sun/invoke \ 76 sun/misc \ 77 sun/reflect \ 78 jdk/lambda \ 79 jdk/internal/misc \ 80 jdk/internal/ref \ 81 vm 82 83 # All of the java.util package 84 jdk_util = \ 85 :jdk_util_other \ 86 :jdk_collections \ 87 :jdk_concurrent \ 88 :jdk_stream 89 90 # All util components not part of some other util category 91 jdk_util_other = \ 92 java/util \ 93 sun/util \ 94 -:jdk_collections \ 95 -:jdk_concurrent \ 96 -:jdk_stream 97 98 # All collections, core and concurrent 99 jdk_collections = \ 100 :jdk_collections_core \ 101 :jdk_concurrent 102 103 # java.util.concurrent 104 # Includes concurrent collections plus other stuff 105 # Maintained by JSR-166 EG (Doug Lea et al) 106 jdk_concurrent = \ 107 java/util/concurrent 108 109 # Java Collections Framework core classes 110 jdk_collections_core = \ 111 java/util/AbstractCollection \ 112 java/util/AbstractList \ 113 java/util/AbstractMap \ 114 java/util/AbstractSequentialList \ 115 java/util/ArrayList \ 116 java/util/Arrays \ 117 java/util/BitSet \ 118 java/util/Collection \ 119 java/util/Collections \ 120 java/util/Comparator \ 121 java/util/Deque \ 122 java/util/EnumMap \ 123 java/util/EnumSet \ 124 java/util/HashMap \ 125 java/util/HashSet \ 126 java/util/Hashtable \ 127 java/util/IdentityHashMap \ 128 java/util/Iterator \ 129 java/util/LinkedHashMap \ 130 java/util/LinkedHashSet \ 131 java/util/LinkedList \ 132 java/util/List \ 133 java/util/Map \ 134 java/util/NavigableMap \ 135 java/util/PriorityQueue \ 136 java/util/TimSort \ 137 java/util/TreeMap \ 138 java/util/Vector \ 139 java/util/WeakHashMap 140 141 # java.util.stream (JSR-335) 142 jdk_stream = \ 143 java/util/Optional \ 144 java/util/function \ 145 java/util/stream 146 147 jdk_math = \ 148 java/math \ 149 jdk/internal/math 150 151 jdk_io = \ 152 java/io 153 154 jdk_nio = \ 155 java/nio \ 156 sun/nio \ 157 jdk/nio 158 159 jdk_net = \ 160 java/net \ 161 com/sun/net/httpserver \ 162 sun/net \ 163 jdk/net 164 165 jdk_time = \ 166 java/time 167 168 jdk_rmi = \ 169 java/rmi \ 170 sun/rmi 171 172 jdk_security1 = \ 173 java/security 174 175 jdk_security2 = \ 176 javax/crypto \ 177 javax/xml/crypto \ 178 com/oracle/security/ucrypto \ 179 com/sun/crypto 180 181 jdk_security3 = \ 182 javax/security \ 183 -javax/security/auth/kerberos \ 184 com/sun/security \ 185 -com/sun/security/jgss \ 186 com/sun/org/apache/xml/internal/security \ 187 jdk/security \ 188 sun/security \ 189 -sun/security/krb5 \ 190 -sun/security/jgss \ 191 javax/net \ 192 sun/net/www/protocol/https \ 193 com/sun/net/ssl \ 194 lib/security 195 196 jdk_security4 = \ 197 com/sun/security/jgss \ 198 javax/security/auth/kerberos \ 199 sun/security/krb5 \ 200 sun/security/jgss 201 202 jdk_security = \ 203 :jdk_security1 \ 204 :jdk_security2 \ 205 :jdk_security3 \ 206 :jdk_security4 207 208 jdk_text = \ 209 java/text \ 210 sun/text 211 212 jdk_management = \ 213 java/lang/management \ 214 com/sun/management \ 215 sun/management 216 217 jdk_instrument = \ 218 java/lang/instrument 219 220 jdk_jmx = \ 221 javax/management \ 222 com/sun/jmx 223 224 jdk_jdi = \ 225 com/sun/jdi 226 227 jdk_native_sanity = \ 228 native_sanity 229 230 # java launcher specific tests, Note: do not include this group into any groups 231 # that potentially could be included into a jprt test rule, as the complementary 232 # closed group includes awt SplashScreen and these tests may not run 233 # satisfactorily on all platforms and profiles thus this group must always 234 # be a stand-alone group 235 jdk_launcher = \ 236 tools/launcher \ 237 sun/tools 238 239 # 240 # Tool (and tool API) tests are split into core and svc groups 241 # 242 core_tools = \ 243 tools \ 244 jdk/internal/jimage \ 245 jdk/internal/jrtfs \ 246 sun/tools/java \ 247 sun/tools/jrunscript 248 249 svc_tools = \ 250 com/sun/tools/attach \ 251 sun/tools \ 252 -sun/tools/java \ 253 -sun/tools/jrunscript \ 254 sun/jvmstat \ 255 demo/jvmti 256 257 jdk_tools = \ 258 :core_tools \ 259 :svc_tools 260 261 # 262 # Catch-all for other areas with a small number of tests 263 # 264 jdk_other = \ 265 java/sql \ 266 javax/sql \ 267 javax/rmi \ 268 javax/naming \ 269 javax/script \ 270 javax/smartcardio \ 271 javax/transaction \ 272 javax/xml \ 273 -javax/xml/crypto \ 274 jdk/asm \ 275 jdk/internal/jline \ 276 com/sun/jndi \ 277 com/sun/corba \ 278 lib/testlibrary \ 279 sample 280 281 # 282 # SCTP is its own group as it is highly sensitive to kernel/network config 283 # 284 jdk_sctp = \ 285 com/sun/nio/sctp 286 287 288 # 289 # core group to run all core area tests 290 # 291 jdk_core = \ 292 :jdk_lang \ 293 :jdk_util \ 294 :jdk_math \ 295 :jdk_io \ 296 :jdk_nio \ 297 :jdk_net \ 298 :jdk_rmi \ 299 :jdk_time \ 300 :jdk_security \ 301 :jdk_text \ 302 :core_tools \ 303 :jdk_other 304 305 # 306 # svc group to run all serviceability area tests 307 # 308 jdk_svc = \ 309 :jdk_management \ 310 :jdk_instrument \ 311 :jdk_jmx \ 312 :jdk_jdi \ 313 :svc_tools 314 315 ############################# 316 317 # 318 # Client area groups 319 # 320 321 jdk_awt = \ 322 java/awt \ 323 com/sun/awt \ 324 com/apple/eawt \ 325 sun/awt 326 327 jdk_2d = \ 328 javax/print \ 329 sun/pisces \ 330 sun/java2d 331 332 jdk_beans = \ 333 java/beans 334 335 jdk_swing = \ 336 javax/accessibility \ 337 javax/swing \ 338 com/sun/java/swing 339 340 jdk_sound = \ 341 javax/sound 342 343 jdk_imageio = \ 344 javax/imageio 345 346 jdk_desktop = \ 347 :jdk_awt \ 348 :jdk_2d \ 349 :jdk_beans \ 350 :jdk_swing \ 351 :jdk_sound \ 352 :jdk_imageio 353 354 ############################################################################### 355 # 356 # Serviceability sanity groups 357 # 358 # These groups specify a subset of Serviceability tests that are supposed to 359 # guard against breakage of Serviceability features by other component teams. 360 # They are added to the "hotspot" testset in JPRT so that they will run on all 361 # full-forest pushes through JPRT. 362 # 363 364 jdk_svc_sanity = \ 365 :jdk_management_sanity \ 366 :jdk_instrument_sanity \ 367 :jdk_jmx_sanity \ 368 :jdk_jdi_sanity \ 369 :svc_tools_sanity 370 371 jdk_management_sanity = 372 373 jdk_instrument_sanity = 374 375 jdk_jmx_sanity = 376 377 jdk_jdi_sanity = \ 378 com/sun/jdi/AcceptTimeout.java \ 379 com/sun/jdi/AccessSpecifierTest.java \ 380 com/sun/jdi/AfterThreadDeathTest.java \ 381 com/sun/jdi/ArrayRangeTest.java \ 382 com/sun/jdi/ConstantPoolInfo.java \ 383 com/sun/jdi/CountFilterTest.java \ 384 com/sun/jdi/EarlyReturnNegativeTest.java \ 385 com/sun/jdi/EarlyReturnTest.java \ 386 com/sun/jdi/FieldWatchpoints.java \ 387 com/sun/jdi/FramesTest.java \ 388 com/sun/jdi/InstanceFilter.java \ 389 com/sun/jdi/InterfaceMethodsTest.java \ 390 com/sun/jdi/InvokeTest.java \ 391 com/sun/jdi/LocalVariableEqual.java \ 392 com/sun/jdi/LocationTest.java \ 393 com/sun/jdi/ModificationWatchpoints.java \ 394 com/sun/jdi/MonitorEventTest.java \ 395 com/sun/jdi/MonitorFrameInfo.java \ 396 com/sun/jdi/NullThreadGroupNameTest.java \ 397 com/sun/jdi/PopAndStepTest.java \ 398 com/sun/jdi/PopAsynchronousTest.java \ 399 com/sun/jdi/ProcessAttachTest.java \ 400 com/sun/jdi/ReferrersTest.java \ 401 com/sun/jdi/RequestReflectionTest.java \ 402 com/sun/jdi/ResumeOneThreadTest.java \ 403 com/sun/jdi/RunToExit.java \ 404 com/sun/jdi/SourceNameFilterTest.java \ 405 com/sun/jdi/VarargsTest.java \ 406 com/sun/jdi/Vars.java \ 407 com/sun/jdi/redefineMethod/RedefineTest.java \ 408 com/sun/jdi/sde/MangleTest.java \ 409 com/sun/jdi/sde/TemperatureTableTest.java 410 411 svc_tools_sanity = 412 413 ############################# 414 # 415 # Stable test groups 416 # 417 418 jdk_stable = \ 419 :jdk_core \ 420 :jdk_svc \ 421 :jdk_beans \ 422 :jdk_imageio \ 423 :jdk_sound \ 424 :jdk_sctp \ 425 javax/accessibility \ 426 com/sun/java/swing \ 427 sun/pisces \ 428 com/sun/awt 429 430 431 ############################################################################### 432 # Profile-based Test Group Definitions 433 # 434 # These groups define the tests that cover the different possible runtimes: 435 # - compact1, compact2, compact3, full JRE, JDK 436 # 437 # In addition they support testing of the minimal VM on compact1 and compact2. 438 # Essentially this defines groups based around the specified API's and VM 439 # services available in the runtime. 440 # 441 # The groups are defined hierarchically in two forms: 442 # - The need_xxx groups list all the tests that have a dependency on 443 # a specific profile. This is either because it tests a feature in 444 # that profile, or the test infrastructure uses a feature in that 445 # profile. 446 # - The primary groups are defined in terms of the other primary groups 447 # combined with the needs_xxx groups (including and excluding them as 448 # appropriate). For example the jre can run all tests from compact3, plus 449 # those from needs_jre, but excluding those from need_jdk. 450 # 451 # The bottom group defines all the actual tests to be considered, simply 452 # by listing the top-level test directories. 453 454 # Full JDK can run all tests 455 # 456 jdk = \ 457 :jre \ 458 :needs_jdk 459 460 # Tests that require a full JDK to execute. Either they test a feature 461 # only in the JDK or they use tools that are only in the JDK. The latter 462 # can be resolved in some cases by using tools from the compile-jdk. 463 # 464 needs_jdk = \ 465 :jdk_jdi \ 466 com/sun/tools \ 467 demo \ 468 jdk/security/jarsigner \ 469 sun/security/tools/jarsigner \ 470 sun/security/tools/policytool \ 471 sun/rmi/rmic \ 472 sun/tools \ 473 sun/jvmstat \ 474 tools \ 475 com/sun/jmx/remote/NotificationMarshalVersions/TestSerializationMismatch.java \ 476 java/io/Serializable/serialver \ 477 java/lang/invoke/lambda/LambdaAccessControlDoPrivilegedTest.java \ 478 java/lang/invoke/lambda/LambdaAccessControlTest.java \ 479 java/lang/invoke/lambda/LambdaAsm.java \ 480 java/lang/System/MacEncoding/TestFileEncoding.java \ 481 java/net/URLClassLoader/closetest/GetResourceAsStream.java \ 482 java/util/Collections/EmptyIterator.java \ 483 java/util/concurrent/locks/Lock/TimedAcquireLeak.java \ 484 java/util/jar/JarInputStream/ExtraFileInMetaInf.java \ 485 java/util/logging/TestLoggerWeakRefLeak.java \ 486 java/util/zip/3GBZipFiles.sh \ 487 jdk/lambda/separate/Compiler.java \ 488 sun/management/jmxremote/bootstrap/JvmstatCountersTest.java \ 489 sun/management/jmxremote/bootstrap/LocalManagementTest.java \ 490 sun/management/jmxremote/bootstrap/CustomLauncherTest.java \ 491 sun/misc/JarIndex/metaInfFilenames/Basic.java \ 492 sun/misc/JarIndex/JarIndexMergeForClassLoaderTest.java \ 493 sun/reflect/CallerSensitive/CallerSensitiveFinder.java \ 494 sun/reflect/CallerSensitive/MissingCallerSensitive.java \ 495 sun/security/util/Resources/NewNamesFormat.java \ 496 vm/verifier/defaultMethods/DefaultMethodRegressionTestsRun.java \ 497 javax/xml/ws/clientjar/TestWsImport.java 498 499 # JRE adds further tests to compact3 500 # 501 jre = \ 502 :compact3 \ 503 :needs_jre \ 504 -:needs_jdk 505 506 # Tests that require the full JRE 507 # 508 needs_jre = \ 509 :needs_charsets \ 510 :jdk_desktop \ 511 com/sun/corba \ 512 com/sun/jndi/cosnaming \ 513 com/oracle/security/ucrypto/Test8004873.java \ 514 com/oracle/security/ucrypto/TestAES.java \ 515 com/oracle/security/ucrypto/TestDigest.java \ 516 com/oracle/security/ucrypto/TestRSA.java \ 517 sun/net/ftp \ 518 sun/net/www/protocol/ftp \ 519 java/net/URI/URItoURLTest.java \ 520 java/net/URL/URIToURLTest.java \ 521 java/net/URLConnection/HandleContentTypeWithAttrs.java \ 522 java/security/Security/ClassLoaderDeadlock/ClassLoaderDeadlock.sh \ 523 java/security/Security/ClassLoaderDeadlock/Deadlock.sh \ 524 java/util/jar/Manifest/CreateManifest.java \ 525 java/util/logging/TestMainAppContext.java \ 526 java/util/logging/TestLoggingWithMainAppContext.java \ 527 java/util/ResourceBundle/Control/Bug6530694.java \ 528 java/text/Bidi/BidiConformance.java \ 529 java/text/Bidi/BidiEmbeddingTest.java \ 530 java/text/Bidi/Bug7042148.java \ 531 java/text/Bidi/Bug7051769.java \ 532 javax/crypto/Cipher/CipherStreamClose.java \ 533 javax/management/monitor/AttributeArbitraryDataTypeTest.java \ 534 javax/management/mxbean/AmbiguousConstructorTest.java \ 535 javax/management/mxbean/ExceptionDiagnosisTest.java \ 536 javax/management/mxbean/LeakTest.java \ 537 javax/management/mxbean/MXBeanTest.java \ 538 javax/management/mxbean/PropertyNamesTest.java \ 539 jdk/lambda/vm/InterfaceAccessFlagsTest.java \ 540 sun/misc/URLClassPath/ClassnameCharTest.java 541 542 # Tests dependent on the optional charsets.jar 543 # These are isolated for easy exclusions 544 # 545 needs_charsets = \ 546 java/io/OutputStreamWriter/TestWrite.java \ 547 java/nio/charset/RemovingSunIO/SunioAlias.java \ 548 java/nio/charset/coders/Check.java \ 549 java/nio/charset/Charset/CharsetContainmentTest.java \ 550 java/nio/charset/Charset/Contains.java \ 551 java/nio/charset/Charset/NIOCharsetAvailabilityTest.java \ 552 java/nio/charset/Charset/RegisteredCharsets.java \ 553 java/nio/charset/CharsetEncoder/Flush.java \ 554 java/nio/charset/coders/CheckSJISMappingProp.sh \ 555 java/nio/charset/coders/ResetISO2022JP.java \ 556 java/util/Locale/InternationalBAT.java \ 557 java/util/Locale/LocaleProviders.sh \ 558 java/util/Calendar/CldrFormatNamesTest.java \ 559 java/util/TimeZone/CLDRDisplayNamesTest.java \ 560 java/util/zip/ZipCoding.java \ 561 sun/nio/cs/EucJpLinux0212.java \ 562 sun/nio/cs/EUCJPUnderflowDecodeTest.java \ 563 sun/nio/cs/EuroConverter.java \ 564 sun/nio/cs/JISAutoDetectTest.java \ 565 sun/nio/cs/OLD/TestIBMDB.java \ 566 sun/nio/cs/SJISCanEncode.java \ 567 sun/nio/cs/Test6254467.java \ 568 sun/nio/cs/TestCp834_SBCS.java \ 569 sun/nio/cs/TestEUC_TW.java \ 570 sun/nio/cs/TestISO2022CNDecoder.java \ 571 sun/nio/cs/TestISO2022JPEncoder.java \ 572 sun/nio/cs/TestISO2022JPSubBytes.java \ 573 sun/nio/cs/TestIllegalSJIS.java \ 574 sun/nio/cs/TestJIS0208Decoder.java \ 575 sun/nio/cs/TestJIS0212Decoder.java \ 576 sun/nio/cs/TestMiscEUC_JP.java \ 577 sun/nio/cs/TestSJIS0213_SM.java \ 578 sun/nio/cs/BufferUnderflowEUCTWTest.java \ 579 sun/nio/cs/CheckCaseInsensitiveEncAliases.java \ 580 sun/nio/cs/CheckHistoricalNames.java \ 581 sun/nio/cs/EucJpLinuxDecoderRecoveryTest.java \ 582 sun/nio/cs/HWKatakanaMS932EncodeTest.java \ 583 sun/nio/cs/ISCIITest.java \ 584 sun/nio/cs/LatinCharReplacementTWTest.java \ 585 sun/nio/cs/NIOJISAutoDetectTest.java \ 586 sun/nio/cs/StreamEncoderClose.java \ 587 sun/nio/cs/SurrogateGB18030Test.java \ 588 sun/nio/cs/SurrogateTestEUCTW.java \ 589 sun/nio/cs/SurrogateTestHKSCS.java \ 590 sun/nio/cs/TestConverterDroppedCharacters.java \ 591 sun/nio/cs/TestCp93xSISO.java \ 592 sun/nio/cs/TestIBM1364.java \ 593 sun/nio/cs/TestIBMBugs.java \ 594 sun/nio/cs/TestIllegalISO2022Esc.java \ 595 sun/nio/cs/TestISO2022JP.java \ 596 sun/nio/cs/TestMS5022X.java \ 597 sun/nio/cs/TestSJIS0213.java \ 598 sun/nio/cs/TestTrailingEscapesISO2022JP.java \ 599 sun/nio/cs/TestUni2HKSCS.java \ 600 sun/nio/cs/ZeroedByteArrayEUCTWTest.java 601 602 # Compact 3 adds further tests to compact2 603 # 604 compact3 = \ 605 :compact2 \ 606 :needs_compact3 \ 607 -:needs_jre \ 608 -:needs_jdk 609 610 611 # Tests that require compact3 API's 612 # 613 needs_compact3 = \ 614 :jdk_instrument \ 615 :jdk_jmx \ 616 :jdk_management \ 617 :jdk_sctp \ 618 com/sun/jndi \ 619 com/sun/org/apache/xml/internal/security \ 620 com/sun/security/auth \ 621 com/sun/security/sasl \ 622 com/sun/security/jgss \ 623 java/util/prefs \ 624 javax/naming \ 625 javax/security \ 626 javax/smartcardio \ 627 javax/sql/rowset \ 628 javax/xml/crypto \ 629 sun/security/jgss \ 630 sun/security/krb5 \ 631 java/lang/annotation/AnnotationType/AnnotationTypeDeadlockTest.java \ 632 java/lang/invoke/lambda/LambdaStackTrace.java \ 633 java/lang/invoke/LFCaching/LFGarbageCollectedTest.java \ 634 java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java \ 635 java/lang/invoke/LFCaching/LFSingleThreadCachingTest.java \ 636 java/lang/System/MacEncoding/TestFileEncoding.java \ 637 java/nio/channels/AsynchronousSocketChannel/Leaky.java \ 638 java/security/PermissionCollection/Concurrent.java \ 639 java/security/Principal/Implies.java \ 640 java/security/cert/GetInstance.java \ 641 java/util/logging/DrainFindDeadlockTest.java \ 642 java/util/logging/LoggingMXBeanTest.java \ 643 java/util/logging/TestLogConfigurationDeadLock.java \ 644 java/util/logging/TestLoggerBundleSync.java \ 645 sun/net/www/http/KeepAliveCache/B5045306.java \ 646 sun/security/provider/PolicyFile/Alias.java \ 647 sun/security/provider/PolicyFile/Comparator.java \ 648 sun/security/provider/PolicyFile/SelfWildcard.java \ 649 sun/security/ssl/SSLEngineImpl/SSLEngineDeadlock.java \ 650 sun/security/util/Oid/OidFormat.java \ 651 sun/security/util/Resources/Format.java \ 652 sun/security/util/Resources/NewNamesFormat.java 653 654 # Compact 2 adds full VM tests 655 compact2 = \ 656 :compact2_minimal \ 657 :compact1 \ 658 :needs_full_vm_compact2 \ 659 -:needs_compact3 \ 660 -:needs_jre \ 661 -:needs_jdk 662 663 # Tests that require compact2 API's and a full VM 664 # 665 needs_full_vm_compact2 = 666 667 # Minimal VM on Compact 2 adds in some compact2 tests 668 # 669 compact2_minimal = \ 670 :compact1_minimal \ 671 :needs_compact2 \ 672 -:needs_compact3 \ 673 -:needs_jre \ 674 -:needs_jdk 675 676 # Tests that require compact2 API's 677 # 678 needs_compact2 = \ 679 :jdk_rmi \ 680 :jdk_time \ 681 com/sun/org/apache \ 682 com/sun/net/httpserver \ 683 java/sql \ 684 javax/sql \ 685 javax/xml \ 686 jdk/lambda \ 687 sun/net/www/http \ 688 sun/net/www/protocol/http \ 689 java/io/BufferedReader/Lines.java \ 690 java/lang/reflect/DefaultStaticTest/DefaultStaticInvokeTest.java \ 691 java/lang/IntegralPrimitiveToString.java \ 692 java/lang/PrimitiveSumMinMaxTest.java \ 693 java/lang/String/StringJoinTest.java \ 694 java/lang/Thread/StopThrowable.java \ 695 java/net/Authenticator/B4769350.java \ 696 java/net/Authenticator/Deadlock.java \ 697 java/net/CookieHandler/LocalHostCookie.java \ 698 java/net/CookieHandler/CookieManagerTest.java \ 699 java/net/CookieHandler/EmptyCookieHeader.java \ 700 java/net/HttpCookie/IllegalCookieNameTest.java \ 701 java/net/HttpURLConnection/UnmodifiableMaps.java \ 702 java/net/ResponseCache/Test.java \ 703 java/net/URLClassLoader/ClassLoad.java \ 704 java/net/URLClassLoader/closetest/CloseTest.java \ 705 java/net/URLPermission/URLTest.java \ 706 java/nio/Buffer/Chars.java \ 707 java/nio/file/Files/StreamTest.java \ 708 java/security/BasicPermission/Wildcard.java \ 709 java/util/Arrays/ParallelPrefix.java \ 710 java/util/Arrays/SetAllTest.java \ 711 java/util/BitSet/BitSetStreamTest.java \ 712 java/util/Collection/CollectionDefaults.java \ 713 java/util/Collections/CheckedIdentityMap.java \ 714 java/util/Collections/CheckedMapBash.java \ 715 java/util/Collections/CheckedSetBash.java \ 716 java/util/Collections/EmptyCollectionSerialization.java \ 717 java/util/Collections/EmptyNavigableMap.java \ 718 java/util/Collections/EmptyNavigableSet.java \ 719 java/util/Collections/UnmodifiableMapEntrySet.java \ 720 java/util/Comparator/BasicTest.java \ 721 java/util/Comparator/TypeTest.java \ 722 java/util/Iterator/IteratorDefaults.java \ 723 java/util/Iterator/PrimitiveIteratorDefaults.java \ 724 java/util/List/ListDefaults.java \ 725 java/util/Map/BasicSerialization.java \ 726 java/util/Map/Defaults.java \ 727 java/util/Map/EntryComparators.java \ 728 java/util/Optional/Basic.java \ 729 java/util/Optional/BasicDouble.java \ 730 java/util/Optional/BasicInt.java \ 731 java/util/Optional/BasicLong.java \ 732 java/util/Random/RandomStreamTest.java \ 733 java/util/ResourceBundle/Bug6359330.java \ 734 java/util/Spliterator/SpliteratorCharacteristics.java \ 735 java/util/Spliterator/SpliteratorCollisions.java \ 736 java/util/Spliterator/SpliteratorLateBindingFailFastTest.java \ 737 java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java \ 738 java/util/StringJoiner/MergeTest.java \ 739 java/util/StringJoiner/StringJoinerTest.java \ 740 java/util/concurrent/atomic/AtomicReferenceTest.java \ 741 java/util/function/BinaryOperator/BasicTest.java \ 742 java/util/logging/LoggerSupplierAPIsTest.java \ 743 java/util/zip/ZipFile/StreamZipEntriesTest.java \ 744 java/util/zip/ZipFile/DeleteTempJar.java \ 745 javax/crypto/Cipher/CipherStreamClose.java \ 746 sun/net/www/protocol/https/HttpsURLConnection/HttpsCreateSockTest.java \ 747 sun/net/www/protocol/https/HttpsURLConnection/HttpsSocketFacTest.java 748 749 # Compact 1 adds full VM tests 750 # 751 compact1 = \ 752 :compact1_minimal \ 753 :needs_full_vm_compact1 \ 754 -:needs_compact2 \ 755 -:needs_full_vm_compact2 \ 756 -:needs_compact3 \ 757 -:needs_jre \ 758 -:needs_jdk 759 760 # Tests that require compact1 API's and a full VM 761 # 762 needs_full_vm_compact1 = 763 764 # All tests that run on the most minimal configuration: Minimal VM on Compact 1 765 compact1_minimal = \ 766 com \ 767 java \ 768 javax \ 769 jdk \ 770 lib \ 771 sample \ 772 sun \ 773 vm \ 774 -:needs_full_vm_compact1 \ 775 -:needs_full_vm_compact2 \ 776 -:needs_compact2 \ 777 -:needs_compact3 \ 778 -:needs_jre \ 779 -:needs_jdk