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