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