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