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