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