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