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