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