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     -java/util/concurrent/ThreadPoolExecutor/ConfigChanges.java \
  32     -java/util/concurrent/forkjoin/FJExceptionTableLeak.java \
  33     sun/nio/cs/ISO8859x.java \
  34     java/nio/Buffer \
  35     com/sun/crypto/provider/Cipher \
  36     :jdk_math \
  37     tools/pack200
  38 
  39 tier2 = \
  40     java/util/concurrent/ThreadPoolExecutor/ConfigChanges.java \
  41     java/util/concurrent/forkjoin/FJExceptionTableLeak.java \
  42     :jdk_io \
  43     :jdk_nio \
  44     -sun/nio/cs/ISO8859x.java \
  45     -java/nio/Buffer \
  46     :jdk_net \
  47     :jdk_time \
  48     :jdk_security \
  49     -com/sun/crypto/provider/Cipher \
  50     :jdk_text \
  51     :core_tools \
  52     -tools/pack200 \
  53     :jdk_other
  54 
  55 tier3 = \
  56     :jdk_rmi \
  57     :jdk_beans \
  58     :jdk_imageio \
  59     :jdk_sound \
  60     :jdk_client_sanity
  61 
  62 ###############################################################################
  63 #
  64 # Other test definitions; generally smaller granularity than tiers
  65 #
  66 
  67 # java.lang package and VM runtime support
  68 jdk_lang = \
  69     java/lang \
  70     -java/lang/management \
  71     -java/lang/instrument \
  72     sun/invoke \
  73     sun/misc \
  74     sun/reflect \
  75     jdk/internal/reflect \
  76     jdk/lambda \
  77     jdk/internal/misc \
  78     jdk/internal/ref \
  79     jdk/internal/jimage \
  80     jdk/modules \
  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     com/sun/net/ssl \
 193     lib/security
 194 
 195 jdk_security4 = \
 196     com/sun/security/jgss \
 197     javax/security/auth/kerberos \
 198     sun/security/krb5 \
 199     sun/security/jgss
 200 
 201 jdk_security = \
 202     :jdk_security1 \
 203     :jdk_security2 \
 204     :jdk_security3 \
 205     :jdk_security4
 206 
 207 jdk_text = \
 208     java/text \
 209     sun/text
 210 
 211 jdk_management = \
 212     java/lang/management \
 213     com/sun/management \
 214     sun/management
 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     demo/jvmti
 254 
 255 jdk_tools = \
 256     :core_tools \
 257     :svc_tools
 258 
 259 #
 260 # Catch-all for other areas with a small number of tests
 261 #
 262 jdk_other = \
 263     java/sql \
 264     javax/sql \
 265     javax/rmi \
 266     javax/naming \
 267     javax/script \
 268     javax/smartcardio \
 269     javax/transaction \
 270     javax/xml \
 271     -javax/xml/crypto \
 272     jdk/asm \
 273     jdk/internal/jline \
 274     com/sun/jndi \
 275     com/sun/corba \
 276     org/omg/CORBA \
 277     lib/testlibrary \
 278     sample
 279 
 280 #
 281 # SCTP is its own group as it is highly sensitive to kernel/network config
 282 #
 283 jdk_sctp = \
 284     com/sun/nio/sctp
 285 
 286 
 287 #
 288 # core group to run all core area tests
 289 #
 290 jdk_core = \
 291     :jdk_lang \
 292     :jdk_util \
 293     :jdk_math \
 294     :jdk_io \
 295     :jdk_nio \
 296     :jdk_net \
 297     :jdk_rmi \
 298     :jdk_time \
 299     :jdk_security \
 300     :jdk_text \
 301     :core_tools \
 302     :jdk_other
 303 
 304 #
 305 # svc group to run all serviceability area tests
 306 #
 307 jdk_svc = \
 308     :jdk_management \
 309     :jdk_instrument \
 310     :jdk_jmx \
 311     :jdk_jdi \
 312     :svc_tools
 313 
 314 #############################
 315 
 316 #
 317 # Client area groups
 318 #
 319 
 320 jdk_awt = \
 321     java/awt \
 322     com/sun/awt \
 323     com/apple/eawt \
 324     sun/awt
 325 
 326 jdk_2d = \
 327     javax/print \
 328     sun/pisces  \
 329     sun/java2d
 330 
 331 jdk_beans = \
 332     java/beans
 333 
 334 jdk_swing = \
 335     javax/accessibility \
 336     javax/swing \
 337     com/sun/java/swing
 338 
 339 jdk_sound = \
 340     javax/sound
 341 
 342 jdk_imageio = \
 343     javax/imageio
 344 
 345 jdk_desktop = \
 346     :jdk_awt \
 347     :jdk_2d \
 348     :jdk_beans \
 349     :jdk_swing \
 350     :jdk_sound \
 351     :jdk_imageio
 352 
 353 # SwingSet3 tests.
 354 jdk_client_sanity = \
 355     sanity/client/SwingSet
 356 
 357 ###############################################################################
 358 #
 359 # Serviceability sanity groups
 360 #
 361 # These groups specify a subset of Serviceability tests that are supposed to
 362 # guard against breakage of Serviceability features by other component teams.
 363 # They are added to the "hotspot" testset in JPRT so that they will run on all
 364 # full-forest pushes through JPRT.
 365 #
 366 
 367 jdk_svc_sanity = \
 368     :jdk_management_sanity \
 369     :jdk_instrument_sanity \
 370     :jdk_jmx_sanity \
 371     :jdk_jdi_sanity \
 372     :svc_tools_sanity
 373 
 374 jdk_management_sanity =
 375 
 376 jdk_instrument_sanity =
 377 
 378 jdk_jmx_sanity =
 379 
 380 jdk_jdi_sanity = \
 381     com/sun/jdi/AcceptTimeout.java \
 382     com/sun/jdi/AccessSpecifierTest.java \
 383     com/sun/jdi/AfterThreadDeathTest.java \
 384     com/sun/jdi/ArrayRangeTest.java \
 385     com/sun/jdi/ConstantPoolInfo.java \
 386     com/sun/jdi/CountFilterTest.java \
 387     com/sun/jdi/EarlyReturnNegativeTest.java \
 388     com/sun/jdi/EarlyReturnTest.java \
 389     com/sun/jdi/FieldWatchpoints.java \
 390     com/sun/jdi/FramesTest.java \
 391     com/sun/jdi/InstanceFilter.java \
 392     com/sun/jdi/InterfaceMethodsTest.java \
 393     com/sun/jdi/InvokeTest.java \
 394     com/sun/jdi/LocalVariableEqual.java \
 395     com/sun/jdi/LocationTest.java \
 396     com/sun/jdi/ModificationWatchpoints.java \
 397     com/sun/jdi/MonitorEventTest.java \
 398     com/sun/jdi/MonitorFrameInfo.java \
 399     com/sun/jdi/NullThreadGroupNameTest.java \
 400     com/sun/jdi/PopAndStepTest.java \
 401     com/sun/jdi/PopAsynchronousTest.java \
 402     com/sun/jdi/ProcessAttachTest.java \
 403     com/sun/jdi/ReferrersTest.java \
 404     com/sun/jdi/RequestReflectionTest.java \
 405     com/sun/jdi/ResumeOneThreadTest.java \
 406     com/sun/jdi/RunToExit.java \
 407     com/sun/jdi/SourceNameFilterTest.java \
 408     com/sun/jdi/VarargsTest.java \
 409     com/sun/jdi/Vars.java \
 410     com/sun/jdi/redefineMethod/RedefineTest.java \
 411     com/sun/jdi/sde/MangleTest.java \
 412     com/sun/jdi/sde/TemperatureTableTest.java
 413 
 414 svc_tools_sanity =
 415 
 416 #############################
 417 #
 418 # Stable test groups
 419 #
 420 
 421 jdk_stable = \
 422     :jdk_core \
 423     :jdk_svc \
 424     :jdk_beans \
 425     :jdk_imageio \
 426     :jdk_sound \
 427     :jdk_sctp \
 428     javax/accessibility \
 429     com/sun/java/swing \
 430     sun/pisces \
 431     com/sun/awt
 432 
 433 
 434 ###############################################################################
 435 # Profile-based Test Group Definitions
 436 #
 437 # These groups define the tests that cover the different possible runtimes:
 438 # - compact1, compact2, compact3, full JRE, JDK
 439 #
 440 # In addition they support testing of the minimal VM on compact1 and compact2.
 441 # Essentially this defines groups based around the specified API's and VM
 442 # services available in the runtime.
 443 #
 444 # The groups are defined hierarchically in two forms:
 445 # - The need_xxx groups list all the tests that have a dependency on
 446 # a specific profile. This is either because it tests a feature in
 447 # that profile, or the test infrastructure uses a feature in that
 448 # profile.
 449 # - The primary groups are defined in terms of the other primary groups
 450 # combined with the needs_xxx groups (including and excluding them as
 451 # appropriate). For example the jre can run all tests from compact3, plus
 452 # those from needs_jre, but excluding those from need_jdk.
 453 #
 454 # The bottom group defines all the actual tests to be considered, simply
 455 # by listing the top-level test directories.
 456 
 457 # Full JDK can run all tests
 458 #
 459 jdk = \
 460   :jre \
 461   :needs_jdk
 462 
 463 # Tests that require a full JDK to execute. Either they test a feature
 464 # only in the JDK or they use tools that are only in the JDK. The latter
 465 # can be resolved in some cases by using tools from the compile-jdk.
 466 #
 467 needs_jdk = \
 468   :jdk_jdi \
 469   com/sun/tools \
 470   demo \
 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/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   sample \
 781   sun \
 782   vm \
 783  -:needs_full_vm_compact1 \
 784  -:needs_full_vm_compact2 \
 785  -:needs_compact2 \
 786  -:needs_compact3 \
 787  -:needs_jre \
 788  -:needs_jdk