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 # All of the java.util package
  82 jdk_util = \
  83     :jdk_util_other \
  84     :jdk_collections \
  85     :jdk_concurrent \
  86     :jdk_stream
  87 
  88 # All util components not part of some other util category
  89 jdk_util_other = \
  90     java/util \
  91     sun/util \
  92     jdk/internal/util \
  93     -:jdk_collections \
  94     -:jdk_concurrent \
  95     -:jdk_stream
  96 
  97 # All collections, core and concurrent
  98 jdk_collections = \
  99     :jdk_collections_core \
 100     :jdk_concurrent
 101 
 102 # java.util.concurrent
 103 # Includes concurrent collections plus other stuff
 104 # Maintained by JSR-166 EG (Doug Lea et al)
 105 jdk_concurrent = \
 106     java/util/concurrent
 107 
 108 # Java Collections Framework core classes
 109 jdk_collections_core = \
 110     java/util/AbstractCollection \
 111     java/util/AbstractList \
 112     java/util/AbstractMap \
 113     java/util/AbstractSequentialList \
 114     java/util/ArrayList \
 115     java/util/Arrays \
 116     java/util/BitSet \
 117     java/util/Collection \
 118     java/util/Collections \
 119     java/util/Comparator \
 120     java/util/Deque \
 121     java/util/EnumMap \
 122     java/util/EnumSet \
 123     java/util/HashMap \
 124     java/util/HashSet \
 125     java/util/Hashtable \
 126     java/util/IdentityHashMap \
 127     java/util/Iterator \
 128     java/util/LinkedHashMap \
 129     java/util/LinkedHashSet \
 130     java/util/LinkedList \
 131     java/util/List \
 132     java/util/Map \
 133     java/util/NavigableMap \
 134     java/util/PriorityQueue \
 135     java/util/TimSort \
 136     java/util/TreeMap \
 137     java/util/Vector \
 138     java/util/WeakHashMap
 139 
 140 # java.util.stream (JSR-335)
 141 jdk_stream = \
 142     java/util/Optional \
 143     java/util/function \
 144     java/util/stream
 145 
 146 jdk_math = \
 147     java/math
 148 
 149 jdk_io = \
 150     java/io
 151 
 152 jdk_nio = \
 153     java/nio \
 154     sun/nio \
 155     jdk/nio
 156 
 157 jdk_net = \
 158     java/net \
 159     com/sun/net/httpserver \
 160     sun/net \
 161     jdk/net
 162 
 163 jdk_time = \
 164     java/time
 165 
 166 jdk_rmi = \
 167     java/rmi \
 168     sun/rmi
 169 
 170 jdk_security1 = \
 171     java/security
 172 
 173 jdk_security2 = \
 174     javax/crypto \
 175     javax/xml/crypto \
 176     com/oracle/security/ucrypto \
 177     com/sun/crypto
 178 
 179 jdk_security3 = \
 180     javax/security  \
 181     -javax/security/auth/kerberos \
 182     com/sun/jarsigner \
 183     com/sun/security \
 184     -com/sun/security/jgss \
 185     com/sun/org/apache/xml/internal/security \
 186     jdk/security \
 187     sun/security \
 188     -sun/security/krb5 \
 189     -sun/security/jgss \
 190     javax/net \
 191     com/sun/net/ssl \
 192     lib/security
 193 
 194 jdk_security4 = \
 195     com/sun/security/jgss \
 196     javax/security/auth/kerberos \
 197     sun/security/krb5 \
 198     sun/security/jgss
 199 
 200 jdk_security = \
 201     :jdk_security1 \
 202     :jdk_security2 \
 203     :jdk_security3 \
 204     :jdk_security4
 205 
 206 jdk_text = \
 207     java/text \
 208     sun/text
 209 
 210 jdk_management = \
 211     java/lang/management \
 212     com/sun/management \
 213     sun/management \
 214     jdk/internal/agent
 215 
 216 jdk_instrument = \
 217     java/lang/instrument
 218 
 219 jdk_jmx = \
 220     javax/management \
 221     com/sun/jmx
 222 
 223 jdk_jdi = \
 224     com/sun/jdi
 225 
 226 jdk_native_sanity = \
 227     native_sanity
 228 
 229 # java launcher specific tests, Note: do not include this group into any groups
 230 # that potentially could be included into a jprt test rule, as the complementary
 231 # closed  group includes awt SplashScreen and these tests may not run
 232 # satisfactorily on all platforms and  profiles thus this group must always
 233 # be a stand-alone group
 234 jdk_launcher = \
 235     tools/launcher \
 236     sun/tools
 237 
 238 #
 239 # Tool (and tool API) tests are split into core and svc groups
 240 #
 241 core_tools = \
 242     tools \
 243     jdk/internal/jrtfs \
 244     sun/tools/java \
 245     sun/tools/jrunscript
 246 
 247 svc_tools = \
 248     com/sun/tools/attach \
 249     sun/tools \
 250     -sun/tools/java \
 251     -sun/tools/jrunscript \
 252     sun/jvmstat
 253 
 254 jdk_tools = \
 255     :core_tools \
 256     :svc_tools
 257 
 258 #
 259 # Catch-all for other areas with a small number of tests
 260 #
 261 jdk_other = \
 262     java/sql \
 263     javax/sql \
 264     javax/rmi \
 265     javax/naming \
 266     javax/script \
 267     javax/smartcardio \
 268     javax/transaction \
 269     javax/xml \
 270     -javax/xml/crypto \
 271     jdk/internal/jline \
 272     com/sun/jndi \
 273     com/sun/corba \
 274     org/omg/CORBA \
 275     lib/testlibrary
 276 
 277 #
 278 # SCTP is its own group as it is highly sensitive to kernel/network config
 279 #
 280 jdk_sctp = \
 281     com/sun/nio/sctp
 282 
 283 
 284 #
 285 # core group to run all core area tests
 286 #
 287 jdk_core = \
 288     :jdk_lang \
 289     :jdk_util \
 290     :jdk_math \
 291     :jdk_io \
 292     :jdk_nio \
 293     :jdk_net \
 294     :jdk_rmi \
 295     :jdk_time \
 296     :jdk_security \
 297     :jdk_text \
 298     :core_tools \
 299     :jdk_other
 300 
 301 #
 302 # svc group to run all serviceability area tests
 303 #
 304 jdk_svc = \
 305     :jdk_management \
 306     :jdk_instrument \
 307     :jdk_jmx \
 308     :jdk_jdi \
 309     :svc_tools
 310 
 311 #############################
 312 
 313 #
 314 # Client area groups
 315 #
 316 
 317 jdk_awt = \
 318     java/awt \
 319     com/sun/awt \
 320     com/apple/eawt \
 321     sun/awt
 322 
 323 jdk_2d = \
 324     javax/print \
 325     sun/pisces  \
 326     sun/java2d
 327 
 328 jdk_beans = \
 329     java/beans
 330 
 331 jdk_swing = \
 332     javax/accessibility \
 333     javax/swing \
 334     com/sun/java/swing
 335 
 336 jdk_sound = \
 337     javax/sound
 338 
 339 jdk_imageio = \
 340     javax/imageio
 341 
 342 jdk_desktop = \
 343     :jdk_awt \
 344     :jdk_2d \
 345     :jdk_beans \
 346     :jdk_swing \
 347     :jdk_sound \
 348     :jdk_imageio
 349 
 350 # SwingSet3 tests.
 351 jdk_client_sanity = \
 352     sanity/client/SwingSet
 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   jdk/security/jarsigner \
 468   sun/security/tools/jarsigner \
 469   sun/security/tools/policytool \
 470   sun/rmi/rmic \
 471   sun/tools \
 472   sun/jvmstat \
 473   tools \
 474   com/sun/jmx/remote/NotificationMarshalVersions/TestSerializationMismatch.java \
 475   java/io/Serializable/serialver \
 476   java/lang/invoke/lambda/LambdaAccessControlDoPrivilegedTest.java \
 477   java/lang/invoke/lambda/LambdaAccessControlTest.java \
 478   java/lang/invoke/lambda/LambdaAsm.java \
 479   java/lang/System/MacEncoding/TestFileEncoding.java \
 480   java/net/URLClassLoader/closetest/GetResourceAsStream.java \
 481   java/util/Collections/EmptyIterator.java \
 482   java/util/concurrent/locks/Lock/TimedAcquireLeak.java \
 483   java/util/jar/JarInputStream/ExtraFileInMetaInf.java \
 484   java/util/logging/TestLoggerWeakRefLeak.java \
 485   java/util/zip/3GBZipFiles.sh \
 486   jdk/lambda/separate/Compiler.java \
 487   sun/management/jmxremote/bootstrap/JvmstatCountersTest.java \
 488   sun/management/jmxremote/bootstrap/LocalManagementTest.java \
 489   sun/management/jmxremote/bootstrap/CustomLauncherTest.java \
 490   sun/misc/JarIndex/metaInfFilenames/Basic.java \
 491   sun/misc/JarIndex/JarIndexMergeForClassLoaderTest.java \
 492   jdk/internal/reflect/CallerSensitive/CallerSensitiveFinder.java \
 493   jdk/internal/reflect/CallerSensitive/MissingCallerSensitive.java \
 494   sun/security/util/Resources/NewNamesFormat.java \
 495   vm/verifier/defaultMethods/DefaultMethodRegressionTestsRun.java \
 496   javax/xml/ws/clientjar/TestWsImport.java \
 497   javax/xml/bind/xjc/8145039/JaxbMarshallTest.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/text/AttributedCharacterIterator/Attribute/ReadResolve.java \
 525   java/text/AttributedString/TestAttributedStringCtor.java \
 526   java/text/AttributedString/getRunStartLimitTest.java \
 527   java/util/jar/Manifest/CreateManifest.java \
 528   java/util/logging/TestMainAppContext.java \
 529   java/util/logging/TestLoggingWithMainAppContext.java \
 530   java/util/TimeZone/DefaultTimeZoneTest.java \
 531   java/text/Bidi/BidiConformance.java \
 532   java/text/Bidi/BidiEmbeddingTest.java \
 533   java/text/Bidi/Bug7042148.java \
 534   java/text/Bidi/Bug7051769.java \
 535   javax/crypto/Cipher/CipherStreamClose.java \
 536   javax/management/monitor/AttributeArbitraryDataTypeTest.java \
 537   javax/management/mxbean/AmbiguousConstructorTest.java \
 538   javax/management/mxbean/ExceptionDiagnosisTest.java \
 539   javax/management/mxbean/LeakTest.java \
 540   javax/management/mxbean/MXBeanTest.java \
 541   javax/management/mxbean/PropertyNamesTest.java \
 542   jdk/lambda/vm/InterfaceAccessFlagsTest.java \
 543   sun/misc/URLClassPath/ClassnameCharTest.java
 544 
 545 # Tests dependent on the optional charsets.jar
 546 # These are isolated for easy exclusions
 547 #
 548 needs_charsets = \
 549   java/io/OutputStreamWriter/TestWrite.java \
 550   java/nio/charset/RemovingSunIO/SunioAlias.java \
 551   java/nio/charset/coders/Check.java \
 552   java/nio/charset/Charset/CharsetContainmentTest.java \
 553   java/nio/charset/Charset/Contains.java \
 554   java/nio/charset/Charset/NIOCharsetAvailabilityTest.java \
 555   java/nio/charset/Charset/RegisteredCharsets.java \
 556   java/nio/charset/CharsetEncoder/Flush.java \
 557   java/nio/charset/coders/ResetISO2022JP.java \
 558   java/util/Locale/InternationalBAT.java \
 559   java/util/Locale/LocaleProviders.sh \
 560   java/util/Calendar/CldrFormatNamesTest.java \
 561   java/util/TimeZone/CLDRDisplayNamesTest.java \
 562   java/util/zip/ZipCoding.java \
 563   sun/nio/cs/EucJpLinux0212.java \
 564   sun/nio/cs/EUCJPUnderflowDecodeTest.java \
 565   sun/nio/cs/EuroConverter.java \
 566   sun/nio/cs/JISAutoDetectTest.java \
 567   sun/nio/cs/OLD/TestIBMDB.java \
 568   sun/nio/cs/SJISCanEncode.java \
 569   sun/nio/cs/Test6254467.java \
 570   sun/nio/cs/TestCp834_SBCS.java \
 571   sun/nio/cs/TestEUC_TW.java \
 572   sun/nio/cs/TestISO2022CNDecoder.java \
 573   sun/nio/cs/TestISO2022JPEncoder.java \
 574   sun/nio/cs/TestISO2022JPSubBytes.java \
 575   sun/nio/cs/TestIllegalSJIS.java \
 576   sun/nio/cs/TestJIS0208Decoder.java \
 577   sun/nio/cs/TestJIS0212Decoder.java \
 578   sun/nio/cs/TestMiscEUC_JP.java \
 579   sun/nio/cs/TestSJIS0213_SM.java \
 580   sun/nio/cs/BufferUnderflowEUCTWTest.java \
 581   sun/nio/cs/CheckCaseInsensitiveEncAliases.java \
 582   sun/nio/cs/CheckHistoricalNames.java \
 583   sun/nio/cs/EucJpLinuxDecoderRecoveryTest.java \
 584   sun/nio/cs/HWKatakanaMS932EncodeTest.java \
 585   sun/nio/cs/ISCIITest.java \
 586   sun/nio/cs/LatinCharReplacementTWTest.java \
 587   sun/nio/cs/NIOJISAutoDetectTest.java \
 588   sun/nio/cs/StreamEncoderClose.java \
 589   sun/nio/cs/SurrogateGB18030Test.java \
 590   sun/nio/cs/SurrogateTestEUCTW.java \
 591   sun/nio/cs/SurrogateTestHKSCS.java \
 592   sun/nio/cs/TestConverterDroppedCharacters.java \
 593   sun/nio/cs/TestCp93xSISO.java \
 594   sun/nio/cs/TestIBM1364.java \
 595   sun/nio/cs/TestIBMBugs.java \
 596   sun/nio/cs/TestIllegalISO2022Esc.java \
 597   sun/nio/cs/TestISO2022JP.java \
 598   sun/nio/cs/TestMS5022X.java \
 599   sun/nio/cs/TestSJIS0213.java \
 600   sun/nio/cs/TestTrailingEscapesISO2022JP.java \
 601   sun/nio/cs/TestUni2HKSCS.java \
 602   sun/nio/cs/ZeroedByteArrayEUCTWTest.java
 603 
 604 # Compact 3 adds further tests to compact2
 605 #
 606 compact3 = \
 607   :compact2 \
 608   :needs_compact3 \
 609  -:needs_jre \
 610  -:needs_jdk
 611 
 612 
 613 # Tests that require compact3 API's
 614 #
 615 needs_compact3 = \
 616   :jdk_instrument \
 617   :jdk_jmx \
 618   :jdk_management \
 619   :jdk_sctp \
 620   com/sun/jndi \
 621   com/sun/org/apache/xml/internal/security \
 622   com/sun/security/auth \
 623   com/sun/security/sasl \
 624   com/sun/security/jgss \
 625   java/util/prefs \
 626   javax/naming \
 627   javax/security \
 628   javax/smartcardio \
 629   javax/sql/rowset \
 630   javax/xml/crypto \
 631   sun/security/jgss \
 632   sun/security/krb5 \
 633   java/lang/annotation/AnnotationType/AnnotationTypeDeadlockTest.java \
 634   java/lang/invoke/lambda/LambdaStackTrace.java \
 635   java/lang/invoke/LFCaching/LFGarbageCollectedTest.java \
 636   java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java \
 637   java/lang/invoke/LFCaching/LFSingleThreadCachingTest.java \
 638   java/lang/System/MacEncoding/TestFileEncoding.java \
 639   java/nio/channels/AsynchronousSocketChannel/Leaky.java \
 640   java/security/PermissionCollection/Concurrent.java \
 641   java/security/Principal/Implies.java \
 642   java/security/cert/GetInstance.java \
 643   java/util/logging/DrainFindDeadlockTest.java \
 644   java/util/logging/LoggingMXBeanTest.java \
 645   java/util/logging/TestLogConfigurationDeadLock.java \
 646   java/util/logging/TestLoggerBundleSync.java \
 647   sun/net/www/http/KeepAliveCache/B5045306.java \
 648   sun/security/provider/PolicyFile/Alias.java \
 649   sun/security/provider/PolicyFile/Comparator.java \
 650   sun/security/provider/PolicyFile/SelfWildcard.java \
 651   sun/security/ssl/SSLEngineImpl/SSLEngineDeadlock.java \
 652   sun/security/util/Oid/OidFormat.java \
 653   sun/security/util/Resources/Format.java \
 654   sun/security/util/Resources/NewNamesFormat.java
 655 
 656 # Compact 2 adds full VM tests
 657 compact2 = \
 658   :compact2_minimal \
 659   :compact1 \
 660   :needs_full_vm_compact2 \
 661  -:needs_compact3 \
 662  -:needs_jre \
 663  -:needs_jdk
 664 
 665 # Tests that require compact2 API's and a full VM
 666 #
 667 needs_full_vm_compact2 =
 668 
 669 # Minimal VM on Compact 2 adds in some compact2 tests
 670 #
 671 compact2_minimal = \
 672   :compact1_minimal \
 673   :needs_compact2 \
 674  -:needs_compact3 \
 675  -:needs_jre \
 676  -:needs_jdk
 677 
 678 # Tests that require compact2 API's
 679 #
 680 needs_compact2 = \
 681   :jdk_rmi \
 682   :jdk_time \
 683   com/sun/org/apache \
 684   com/sun/net/httpserver \
 685   java/sql \
 686   javax/sql \
 687   javax/xml \
 688   jdk/lambda \
 689   sun/net/www/http \
 690   sun/net/www/protocol/http \
 691   java/io/BufferedReader/Lines.java  \
 692   java/lang/reflect/DefaultStaticTest/DefaultStaticInvokeTest.java \
 693   java/lang/IntegralPrimitiveToString.java  \
 694   java/lang/PrimitiveSumMinMaxTest.java  \
 695   java/lang/String/StringJoinTest.java  \
 696   java/lang/Thread/StopThrowable.java  \
 697   java/net/Authenticator/B4769350.java \
 698   java/net/Authenticator/Deadlock.java \
 699   java/net/CookieHandler/LocalHostCookie.java \
 700   java/net/CookieHandler/CookieManagerTest.java \
 701   java/net/CookieHandler/EmptyCookieHeader.java \
 702   java/net/HttpCookie/IllegalCookieNameTest.java \
 703   java/net/HttpURLConnection/UnmodifiableMaps.java \
 704   java/net/ResponseCache/Test.java \
 705   java/net/URLClassLoader/ClassLoad.java \
 706   java/net/URLClassLoader/closetest/CloseTest.java \
 707   java/net/URLPermission/URLTest.java \
 708   java/nio/Buffer/Chars.java  \
 709   java/nio/file/Files/StreamTest.java  \
 710   java/security/BasicPermission/Wildcard.java \
 711   java/util/Arrays/ParallelPrefix.java  \
 712   java/util/Arrays/SetAllTest.java  \
 713   java/util/BitSet/stream/BitSetStreamTest.java  \
 714   java/util/Collection/CollectionDefaults.java  \
 715   java/util/Collections/CheckedIdentityMap.java  \
 716   java/util/Collections/CheckedMapBash.java  \
 717   java/util/Collections/CheckedSetBash.java  \
 718   java/util/Collections/EmptyCollectionSerialization.java  \
 719   java/util/Collections/EmptyNavigableMap.java  \
 720   java/util/Collections/EmptyNavigableSet.java  \
 721   java/util/Collections/UnmodifiableMapEntrySet.java  \
 722   java/util/Comparator/BasicTest.java  \
 723   java/util/Comparator/TypeTest.java  \
 724   java/util/Date/TimestampTest.java \
 725   java/util/Iterator/IteratorDefaults.java  \
 726   java/util/Iterator/PrimitiveIteratorDefaults.java  \
 727   java/util/List/ListDefaults.java  \
 728   java/util/Map/BasicSerialization.java  \
 729   java/util/Map/Defaults.java  \
 730   java/util/Map/EntryComparators.java  \
 731   java/util/Optional/Basic.java  \
 732   java/util/Optional/BasicDouble.java  \
 733   java/util/Optional/BasicInt.java  \
 734   java/util/Optional/BasicLong.java  \
 735   java/util/Random/RandomStreamTest.java  \
 736   java/util/ResourceBundle/Bug6359330.java  \
 737   java/util/Spliterator/SpliteratorCharacteristics.java  \
 738   java/util/Spliterator/SpliteratorCollisions.java  \
 739   java/util/Spliterator/SpliteratorLateBindingTest.java  \
 740   java/util/Spliterator/SpliteratorFailFastTest.java  \
 741   java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java  \
 742   java/util/StringJoiner/MergeTest.java  \
 743   java/util/StringJoiner/StringJoinerTest.java  \
 744   java/util/concurrent/atomic/AtomicReferenceTest.java  \
 745   java/util/function/BinaryOperator/BasicTest.java  \
 746   java/util/logging/LoggerSupplierAPIsTest.java  \
 747   java/util/zip/ZipFile/StreamZipEntriesTest.java \
 748   java/util/zip/ZipFile/DeleteTempJar.java \
 749   javax/crypto/Cipher/CipherStreamClose.java \
 750   sun/net/www/protocol/https/HttpsURLConnection/HttpsCreateSockTest.java \
 751   sun/net/www/protocol/https/HttpsURLConnection/HttpsSocketFacTest.java
 752 
 753 # Compact 1 adds full VM tests
 754 #
 755 compact1 = \
 756   :compact1_minimal \
 757   :needs_full_vm_compact1 \
 758  -:needs_compact2 \
 759  -:needs_full_vm_compact2 \
 760  -:needs_compact3 \
 761  -:needs_jre \
 762  -:needs_jdk
 763 
 764 # Tests that require compact1 API's and a full VM
 765 #
 766 needs_full_vm_compact1 =
 767 
 768 # All tests that run on the most minimal configuration: Minimal VM on Compact 1
 769 compact1_minimal = \
 770   com \
 771   java \
 772   javax \
 773   jdk \
 774   lib \
 775   sun \
 776   vm \
 777  -:needs_full_vm_compact1 \
 778  -:needs_full_vm_compact2 \
 779  -:needs_compact2 \
 780  -:needs_compact3 \
 781  -:needs_jre \
 782  -:needs_jdk