blob: 15c2f44b7d246846a4e7adbe1780d9406b04619d [file] [log] [blame]
alanb3dfa4ce2013-08-21 09:59:12 +01001# Copyright (c) 2013, 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
mduigou16e68be2013-09-13 11:19:13 -070023# java.lang package and VM runtime support
alanb3dfa4ce2013-08-21 09:59:12 +010024jdk_lang = \
25 java/lang \
26 -java/lang/management \
27 -java/lang/instrument \
28 sun/invoke \
29 sun/misc \
30 sun/reflect \
mduigouc9611e62013-09-03 11:29:12 -070031 jdk/lambda \
alanb3dfa4ce2013-08-21 09:59:12 +010032 vm
33
mduigou16e68be2013-09-13 11:19:13 -070034# All of the java.util package
alanb3dfa4ce2013-08-21 09:59:12 +010035jdk_util = \
mduigou16e68be2013-09-13 11:19:13 -070036 :jdk_util_other \
37 :jdk_collections \
38 :jdk_concurrent \
39 :jdk_stream
40
41# All util components not part of some other util category
42jdk_util_other = \
alanb3dfa4ce2013-08-21 09:59:12 +010043 java/util \
mduigou16e68be2013-09-13 11:19:13 -070044 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
52jdk_concurrent = \
53 java/util/concurrent \
54 java/util/Deque \
55 java/util/PriorityQueue
56
57# Java Collections Framework
58jdk_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)
87jdk_stream = \
88 java/util/Optional \
mduigou16e68be2013-09-13 11:19:13 -070089 java/util/function \
90 java/util/stream
alanb3dfa4ce2013-08-21 09:59:12 +010091
92jdk_math = \
93 java/math
94
95jdk_io = \
96 java/io
97
98jdk_nio = \
99 java/nio \
100 sun/nio
101
102jdk_net = \
103 java/net \
104 com/sun/net \
105 com/oracle/net \
michaelmc0999bc2014-04-14 14:29:10 +0000106 sun/net \
107 jdk/net
alanb3dfa4ce2013-08-21 09:59:12 +0100108
109jdk_time = \
110 java/time
111
112jdk_rmi = \
113 java/rmi \
114 javax/rmi/ssl \
115 sun/rmi
116
117jdk_security1 = \
118 java/security
119
120jdk_security2 = \
121 javax/crypto \
122 javax/xml/crypto \
123 com/sun/crypto
124
125jdk_security3 = \
126 javax/security \
coffeys7b86cc62014-09-12 17:08:22 +0100127 -javax/security/auth/kerberos \
alanb3dfa4ce2013-08-21 09:59:12 +0100128 com/sun/security \
coffeys7b86cc62014-09-12 17:08:22 +0100129 -com/sun/security/jgss \
alanb3dfa4ce2013-08-21 09:59:12 +0100130 com/sun/org/apache/xml/internal/security \
alanb3dfa4ce2013-08-21 09:59:12 +0100131 sun/security \
coffeys7b86cc62014-09-12 17:08:22 +0100132 -sun/security/krb5 \
133 -sun/security/jgss \
134 javax/net \
alanb3dfa4ce2013-08-21 09:59:12 +0100135 lib/security
136
coffeys7b86cc62014-09-12 17:08:22 +0100137jdk_security4 = \
138 com/sun/security/jgss \
139 javax/security/auth/kerberos \
140 sun/security/krb5 \
141 sun/security/jgss
142
alanb3dfa4ce2013-08-21 09:59:12 +0100143jdk_security = \
144 :jdk_security1 \
145 :jdk_security2 \
coffeys7b86cc62014-09-12 17:08:22 +0100146 :jdk_security3 \
147 :jdk_security4
alanb3dfa4ce2013-08-21 09:59:12 +0100148
149jdk_text = \
150 java/text \
151 sun/text
152
153jdk_management = \
154 java/lang/management \
155 com/sun/management \
156 sun/management
157
158jdk_instrument = \
159 java/lang/instrument
160
161jdk_jmx = \
162 javax/management \
163 com/sun/jmx
164
165jdk_jdi = \
166 com/sun/jdi
167
168#
169# Tool (and tool API) tests are split into core and svc groups
170#
171core_tools = \
172 tools \
173 com/sun/tools/extcheck \
174 sun/tools/java \
175 sun/tools/native2ascii \
176 sun/tools/jrunscript
177
178svc_tools = \
179 com/sun/tools/attach \
180 com/sun/tracing \
181 sun/tools \
182 -sun/tools/java \
183 -sun/tools/native2ascii \
184 -sun/tools/jrunscript \
185 sun/jvmstat \
186 demo/jvmti
187
188jdk_tools = \
189 :core_tools \
190 :svc_tools
191
192#
193# Catch-all for other areas with a small number of tests
194#
195jdk_other = \
196 java/sql \
197 javax/sql \
198 javax/naming \
199 javax/script \
200 javax/smartcardio \
201 javax/xml \
202 -javax/xml/crypto \
203 jdk/asm \
alanb3dfa4ce2013-08-21 09:59:12 +0100204 com/sun/jndi \
205 com/sun/corba \
206 lib/testlibrary \
207 demo/zipfs \
208 sample
209
210#
211# SCTP is its own group as it is highly sensitive to kernel/network config
212#
213jdk_sctp = \
214 com/sun/nio/sctp
215
216
217#
218# core group to run all core area tests
219#
220jdk_core = \
221 :jdk_lang \
222 :jdk_util \
223 :jdk_math \
224 :jdk_io \
225 :jdk_nio \
226 :jdk_net \
227 :jdk_rmi \
228 :jdk_time \
229 :jdk_security \
230 :jdk_text \
231 :core_tools \
232 :jdk_other
233
234#
235# svc group to run all serviceability area tests
236#
237jdk_svc = \
238 :jdk_management \
239 :jdk_instrument \
240 :jdk_jmx \
241 :jdk_jdi \
242 :svc_tools
243
244#############################
245
246#
247# Client area groups
248#
249
250jdk_awt = \
251 java/awt \
252 com/sun/awt \
253 com/apple/eawt \
254 sun/awt
255
256jdk_2d = \
257 javax/print \
258 sun/pisces \
259 sun/java2d
260
261jdk_beans = \
262 java/beans
263
264jdk_swing = \
265 javax/accessibility \
266 javax/swing \
267 com/sun/java/swing
268
269jdk_sound = \
270 javax/sound
271
272jdk_imageio = \
273 javax/imageio
274
275jdk_desktop = \
276 :jdk_awt \
277 :jdk_2d \
278 :jdk_beans \
279 :jdk_swing \
280 :jdk_sound \
281 :jdk_imageio
dholmes9728b8b2013-09-03 23:47:27 -0400282
283###############################################################################
284# Profile-based Test Group Definitions
285#
286# These groups define the tests that cover the different possible runtimes:
287# - compact1, compact2, compact3, full JRE, JDK
288#
289# In addition they support testing of the minimal VM on compact1 and compact2.
290# Essentially this defines groups based around the specified API's and VM
291# services available in the runtime.
292#
293# The groups are defined hierarchically in two forms:
294# - The need_xxx groups list all the tests that have a dependency on
295# a specific profile. This is either because it tests a feature in
296# that profile, or the test infrastructure uses a feature in that
297# profile.
298# - The primary groups are defined in terms of the other primary groups
299# combined with the needs_xxx groups (including and excluding them as
300# appropriate). For example the jre can run all tests from compact3, plus
301# those from needs_jre, but excluding those from need_jdk.
302#
303# The bottom group defines all the actual tests to be considered, simply
304# by listing the top-level test directories.
305
306# Full JDK can run all tests
307#
308jdk = \
309 :jre \
310 :needs_jdk
311
312# Tests that require a full JDK to execute. Either they test a feature
313# only in the JDK or they use tools that are only in the JDK. The latter
314# can be resolved in some cases by using tools from the compile-jdk.
315#
316needs_jdk = \
317 :jdk_jdi \
318 com/sun/tools \
319 demo \
320 sun/security/tools/jarsigner \
321 sun/rmi/rmic \
322 sun/tools \
323 sun/jvmstat \
324 tools \
325 com/sun/jmx/remote/NotificationMarshalVersions/TestSerializationMismatch.java \
326 java/io/Serializable/serialver \
327 java/lang/invoke/lambda/LambdaAccessControlDoPrivilegedTest.java \
328 java/lang/invoke/lambda/LambdaAccessControlTest.java \
dholmesd30f00e2014-08-24 18:23:06 -0400329 java/lang/invoke/lambda/LambdaAsm.java \
dholmes9728b8b2013-09-03 23:47:27 -0400330 java/lang/System/MacEncoding/TestFileEncoding.java \
331 java/net/URLClassLoader/closetest/GetResourceAsStream.java \
332 java/util/Collections/EmptyIterator.java \
333 java/util/concurrent/locks/Lock/TimedAcquireLeak.java \
dholmes9728b8b2013-09-03 23:47:27 -0400334 java/util/jar/JarInputStream/ExtraFileInMetaInf.java \
335 java/util/logging/AnonLoggerWeakRefLeak.sh \
336 java/util/logging/LoggerWeakRefLeak.sh \
337 java/util/zip/3GBZipFiles.sh \
338 jdk/lambda/FDTest.java \
339 jdk/lambda/separate/Compiler.java \
340 sun/management/jdp/JdpTest.sh \
341 sun/management/jmxremote/bootstrap/JvmstatCountersTest.java \
jbachorik9187d142013-10-25 13:01:11 +0200342 sun/management/jmxremote/bootstrap/LocalManagementTest.java \
343 sun/management/jmxremote/bootstrap/CustomLauncherTest.java \
dholmes9728b8b2013-09-03 23:47:27 -0400344 sun/misc/JarIndex/metaInfFilenames/Basic.java \
345 sun/misc/JarIndex/JarIndexMergeForClassLoaderTest.java \
346 sun/reflect/CallerSensitive/CallerSensitiveFinder.java \
347 sun/reflect/CallerSensitive/MissingCallerSensitive.java \
348 sun/security/util/Resources/NewNamesFormat.java \
dholmes2c30d432014-07-06 20:12:44 -0400349 vm/verifier/defaultMethods/DefaultMethodRegressionTestsRun.java \
350 javax/xml/ws/clientjar/TestWsImport.java
dholmes9728b8b2013-09-03 23:47:27 -0400351
352# JRE adds further tests to compact3
353#
354jre = \
355 :compact3 \
356 :needs_jre \
357 -:needs_jdk
358
359# Tests that require the full JRE
360#
361needs_jre = \
362 :needs_charsets \
363 :jdk_desktop \
364 com/sun/corba \
365 com/sun/jndi/cosnaming \
366 sun/net/ftp \
367 sun/net/www/protocol/ftp \
368 sun/security/tools/policytool \
369 java/net/URI/URItoURLTest.java \
370 java/net/URL/URIToURLTest.java \
371 java/net/URLConnection/HandleContentTypeWithAttrs.java \
372 java/security/Security/ClassLoaderDeadlock/ClassLoaderDeadlock.sh \
373 java/security/Security/ClassLoaderDeadlock/Deadlock.sh \
dholmes9a962512013-10-15 20:54:00 -0400374 java/util/jar/Manifest/CreateManifest.java \
dholmes9728b8b2013-09-03 23:47:27 -0400375 java/util/logging/Listeners.java \
376 java/util/logging/ListenersWithSM.java \
dfuchsb2ebb6b2013-10-15 13:01:28 +0200377 java/util/logging/TestMainAppContext.java \
dholmes2c30d432014-07-06 20:12:44 -0400378 java/util/logging/TestLoggingWithMainAppContext.java \
dholmes9728b8b2013-09-03 23:47:27 -0400379 java/util/ResourceBundle/Control/Bug6530694.java \
380 java/text/Bidi/BidiConformance.java \
381 java/text/Bidi/BidiEmbeddingTest.java \
dholmes9728b8b2013-09-03 23:47:27 -0400382 java/text/Bidi/Bug7042148.java \
383 java/text/Bidi/Bug7051769.java \
384 javax/crypto/Cipher/CipherStreamClose.java \
385 javax/management/monitor/AttributeArbitraryDataTypeTest.java \
dholmesd30f00e2014-08-24 18:23:06 -0400386 javax/management/mxbean/AmbiguousConstructorTest.java \
387 javax/management/mxbean/ExceptionDiagnosisTest.java \
388 javax/management/mxbean/LeakTest.java \
389 javax/management/mxbean/MXBeanTest.java \
390 javax/management/mxbean/PropertyNamesTest.java \
dholmes9728b8b2013-09-03 23:47:27 -0400391 jdk/lambda/vm/InterfaceAccessFlagsTest.java \
392 sun/misc/URLClassPath/ClassnameCharTest.java
393
394# Tests dependent on the optional charsets.jar
395# These are isolated for easy exclusions
396#
397needs_charsets = \
398 java/io/OutputStreamWriter/TestWrite.java \
399 java/nio/charset/RemovingSunIO/SunioAlias.java \
400 java/nio/charset/coders/Check.java \
401 java/nio/charset/Charset/CharsetContainmentTest.java \
402 java/nio/charset/Charset/Contains.java \
403 java/nio/charset/Charset/NIOCharsetAvailabilityTest.java \
404 java/nio/charset/Charset/RegisteredCharsets.java \
405 java/nio/charset/CharsetEncoder/Flush.java \
406 java/nio/charset/coders/CheckSJISMappingProp.sh \
407 java/nio/charset/coders/ResetISO2022JP.java \
408 java/util/Locale/InternationalBAT.java \
409 java/util/Locale/LocaleProviders.sh \
410 java/util/Calendar/CldrFormatNamesTest.java \
411 java/util/TimeZone/CLDRDisplayNamesTest.java \
412 java/util/zip/ZipCoding.java \
413 sun/nio/cs/EucJpLinux0212.java \
414 sun/nio/cs/EUCJPUnderflowDecodeTest.java \
415 sun/nio/cs/EuroConverter.java \
416 sun/nio/cs/JISAutoDetectTest.java \
417 sun/nio/cs/OLD/TestIBMDB.java \
418 sun/nio/cs/SJISCanEncode.java \
419 sun/nio/cs/Test6254467.java \
420 sun/nio/cs/TestCompoundTest.java \
421 sun/nio/cs/TestCp834_SBCS.java \
422 sun/nio/cs/TestEUC_TW.java \
423 sun/nio/cs/TestISO2022CNDecoder.java \
424 sun/nio/cs/TestISO2022JPEncoder.java \
425 sun/nio/cs/TestISO2022JPSubBytes.java \
426 sun/nio/cs/TestIllegalSJIS.java \
427 sun/nio/cs/TestJIS0208Decoder.java \
428 sun/nio/cs/TestJIS0212Decoder.java \
429 sun/nio/cs/TestMiscEUC_JP.java \
430 sun/nio/cs/TestSJIS0213_SM.java \
431 sun/nio/cs/BufferUnderflowEUCTWTest.java \
432 sun/nio/cs/CheckCaseInsensitiveEncAliases.java \
433 sun/nio/cs/CheckHistoricalNames.java \
434 sun/nio/cs/EucJpLinuxDecoderRecoveryTest.java \
435 sun/nio/cs/HWKatakanaMS932EncodeTest.java \
436 sun/nio/cs/ISCIITest.java \
437 sun/nio/cs/LatinCharReplacementTWTest.java \
438 sun/nio/cs/NIOJISAutoDetectTest.java \
439 sun/nio/cs/StreamEncoderClose.java \
440 sun/nio/cs/SurrogateGB18030Test.java \
441 sun/nio/cs/SurrogateTestEUCTW.java \
442 sun/nio/cs/SurrogateTestHKSCS.java \
443 sun/nio/cs/TestConverterDroppedCharacters.java \
444 sun/nio/cs/TestCp93xSISO.java \
445 sun/nio/cs/TestIBM1364.java \
446 sun/nio/cs/TestIBMBugs.java \
447 sun/nio/cs/TestIllegalISO2022Esc.java \
448 sun/nio/cs/TestISO2022JP.java \
449 sun/nio/cs/TestMS5022X.java \
450 sun/nio/cs/TestSJIS0213.java \
451 sun/nio/cs/TestTrailingEscapesISO2022JP.java \
452 sun/nio/cs/TestUni2HKSCS.java \
453 sun/nio/cs/ZeroedByteArrayEUCTWTest.java
454
455# Compact 3 adds further tests to compact2
456#
457compact3 = \
458 :compact2 \
459 :needs_compact3 \
460 -:needs_jre \
461 -:needs_jdk
462
463
464# Tests that require compact3 API's
465#
466needs_compact3 = \
467 :jdk_instrument \
468 :jdk_jmx \
469 :jdk_management \
470 :jdk_sctp \
471 com/sun/jndi \
472 com/sun/org/apache/xml/internal/security \
473 com/sun/security/auth \
474 com/sun/security/sasl \
475 com/sun/security/jgss \
476 com/sun/tracing \
477 java/util/prefs \
478 javax/naming \
479 javax/security \
480 javax/smartcardio \
481 javax/sql/rowset \
482 javax/xml/crypto \
483 sun/security/acl \
484 sun/security/jgss \
485 sun/security/krb5 \
dholmesd30f00e2014-08-24 18:23:06 -0400486 java/lang/annotation/AnnotationType/AnnotationTypeDeadlockTest.java \
dholmes9728b8b2013-09-03 23:47:27 -0400487 java/lang/System/MacEncoding/TestFileEncoding.java \
488 java/nio/channels/AsynchronousSocketChannel/Leaky.java \
489 java/security/PermissionCollection/Concurrent.java \
490 java/security/Principal/Implies.java \
491 java/security/cert/GetInstance.java \
492 java/util/logging/DrainFindDeadlockTest.java \
493 java/util/logging/LoggingMXBeanTest.java \
dholmesd30f00e2014-08-24 18:23:06 -0400494 java/util/logging/TestLogConfigurationDeadLock.java \
495 java/util/logging/TestLoggerBundleSync.java \
dholmes9728b8b2013-09-03 23:47:27 -0400496 sun/net/www/http/KeepAliveCache/B5045306.java \
497 sun/security/provider/PolicyFile/Alias.java \
498 sun/security/provider/PolicyFile/Comparator.java \
499 sun/security/provider/PolicyFile/SelfWildcard.java \
500 sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/SSLEngineDeadlock.java \
501 sun/security/util/Oid/OidFormat.java \
502 sun/security/util/Resources/Format.java \
503 sun/security/util/Resources/NewNamesFormat.java
504
505# Compact 2 adds full VM tests
506compact2 = \
507 :compact2_minimal \
508 :compact1 \
509 :needs_full_vm_compact2 \
510 -:needs_compact3 \
511 -:needs_jre \
512 -:needs_jdk
513
514# Tests that require compact2 API's and a full VM
515#
516needs_full_vm_compact2 =
517
518# Minimal VM on Compact 2 adds in some compact2 tests
519#
520compact2_minimal = \
521 :compact1_minimal \
522 :needs_compact2 \
523 -:needs_compact3 \
524 -:needs_jre \
525 -:needs_jdk
526
527# Tests that require compact2 API's
528#
529needs_compact2 = \
530 :jdk_rmi \
531 :jdk_time \
532 com/sun/org/apache \
533 com/sun/net/httpserver \
534 java/sql \
535 javax/sql \
536 javax/xml \
537 jdk/lambda \
538 sun/net/www/http \
539 sun/net/www/protocol/http \
540 java/io/BufferedReader/Lines.java \
541 java/lang/reflect/DefaultStaticTest/DefaultStaticInvokeTest.java \
542 java/lang/CharSequence/DefaultTest.java \
543 java/lang/IntegralPrimitiveToString.java \
544 java/lang/PrimitiveSumMinMaxTest.java \
545 java/lang/String/StringJoinTest.java \
546 java/lang/Thread/StopThrowable.java \
dholmesd30f00e2014-08-24 18:23:06 -0400547 java/net/Authenticator/B4769350.java \
dholmes9728b8b2013-09-03 23:47:27 -0400548 java/net/Authenticator/Deadlock.java \
549 java/net/CookieHandler/LocalHostCookie.java \
550 java/net/CookieHandler/CookieManagerTest.java \
551 java/net/CookieHandler/EmptyCookieHeader.java \
552 java/net/HttpCookie/IllegalCookieNameTest.java \
553 java/net/HttpURLConnection/UnmodifiableMaps.java \
dholmes9728b8b2013-09-03 23:47:27 -0400554 java/net/ResponseCache/Test.java \
555 java/net/URLClassLoader/ClassLoad.java \
556 java/net/URLClassLoader/closetest/CloseTest.java \
dholmes9a962512013-10-15 20:54:00 -0400557 java/net/URLPermission/URLTest.java \
dholmes9728b8b2013-09-03 23:47:27 -0400558 java/nio/Buffer/Chars.java \
559 java/nio/file/Files/StreamTest.java \
560 java/security/BasicPermission/Wildcard.java \
561 java/util/Arrays/ParallelPrefix.java \
562 java/util/Arrays/SetAllTest.java \
563 java/util/BitSet/BitSetStreamTest.java \
564 java/util/Collection/CollectionDefaults.java \
dholmes9728b8b2013-09-03 23:47:27 -0400565 java/util/Collections/CheckedIdentityMap.java \
566 java/util/Collections/CheckedMapBash.java \
567 java/util/Collections/CheckedSetBash.java \
568 java/util/Collections/EmptyCollectionSerialization.java \
569 java/util/Collections/EmptyNavigableMap.java \
570 java/util/Collections/EmptyNavigableSet.java \
571 java/util/Collections/UnmodifiableMapEntrySet.java \
572 java/util/Comparator/BasicTest.java \
573 java/util/Comparator/TypeTest.java \
574 java/util/Iterator/IteratorDefaults.java \
575 java/util/Iterator/PrimitiveIteratorDefaults.java \
dholmes9a962512013-10-15 20:54:00 -0400576 java/util/List/ListDefaults.java \
dholmes9728b8b2013-09-03 23:47:27 -0400577 java/util/Map/BasicSerialization.java \
578 java/util/Map/Defaults.java \
579 java/util/Map/EntryComparators.java \
580 java/util/Optional/Basic.java \
581 java/util/Optional/BasicDouble.java \
582 java/util/Optional/BasicInt.java \
583 java/util/Optional/BasicLong.java \
584 java/util/Random/RandomStreamTest.java \
585 java/util/ResourceBundle/Bug6359330.java \
586 java/util/Spliterator/SpliteratorCharacteristics.java \
587 java/util/Spliterator/SpliteratorCollisions.java \
588 java/util/Spliterator/SpliteratorLateBindingFailFastTest.java \
589 java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java \
590 java/util/StringJoiner/MergeTest.java \
591 java/util/StringJoiner/StringJoinerTest.java \
592 java/util/concurrent/atomic/AtomicReferenceTest.java \
593 java/util/function/BinaryOperator/BasicTest.java \
594 java/util/logging/LoggerSupplierAPIsTest.java \
595 java/util/zip/ZipFile/StreamZipEntriesTest.java \
596 java/util/zip/ZipFile/DeleteTempJar.java \
597 javax/crypto/Cipher/CipherStreamClose.java \
dholmes9728b8b2013-09-03 23:47:27 -0400598 sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/HttpsCreateSockTest.java \
599 sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/HttpsSocketFacTest.java
600
601# Compact 1 adds full VM tests
602#
603compact1 = \
604 :compact1_minimal \
605 :needs_full_vm_compact1 \
606 -:needs_compact2 \
607 -:needs_full_vm_compact2 \
608 -:needs_compact3 \
609 -:needs_jre \
610 -:needs_jdk
611
612# Tests that require compact1 API's and a full VM
613#
614needs_full_vm_compact1 =
615
616# All tests that run on the most minimal configuration: Minimal VM on Compact 1
617compact1_minimal = \
618 com \
619 java \
620 javax \
621 jdk \
622 lib \
623 sample \
624 sun \
625 vm \
626 -:needs_full_vm_compact1 \
627 -:needs_full_vm_compact2 \
628 -:needs_compact2 \
629 -:needs_compact3 \
630 -:needs_jre \
631 -:needs_jdk