< prev index next >

test/jdk/TEST.groups

Print this page

 28 all = \
 29     :jdk_all
 30 
 31 jdk_all = \
 32     /
 33 
 34 ###############################################################################
 35 #
 36 # Tiered testing definitions
 37 #
 38 
 39 # When adding tests to tier1, make sure they end up in one of the tier1_partX groups
 40 tier1 = \
 41     :tier1_part1 \
 42     :tier1_part2 \
 43     :tier1_part3
 44 
 45 tier1_part1 = \
 46     :jdk_lang
 47 




 48 tier1_part2 = \
 49     :jdk_util
 50 




 51 tier1_part3 = \
 52     :jdk_math \
 53     :jdk_svc_sanity \
 54     :jdk_foreign \
 55     :jdk_vector_sanity \
 56     java/nio/Buffer \
 57     com/sun/crypto/provider/Cipher \
 58     jdk/classfile \
 59     sun/nio/cs/ISO8859x.java
 60 








 61 # When adding tests to tier2, make sure they end up in one of the tier2_partX groups
 62 tier2 = \
 63     :tier2_part1 \
 64     :tier2_part2 \
 65     :tier2_part3
 66 
 67 # com/sun/crypto/provider/Cipher is in tier1 because of JDK-8132855
 68 tier2_part1 = \
 69     :jdk_security \
 70     -com/sun/crypto/provider/Cipher
 71 
 72 # sun/nio/cs/ISO8859x.java and java/nio/Buffer are in tier1 because of JDK-8132854
 73 tier2_part2 = \
 74     :core_tools \
 75     :jdk_io \
 76     :jdk_nio \
 77     -java/nio/Buffer \
 78     -sun/nio/cs/ISO8859x.java \
 79     :jdk_other \
 80     :jdk_text \

120 build = \
121     build
122 
123 # java.lang package and VM runtime support
124 jdk_lang = \
125     java/lang \
126     -java/lang/management \
127     -java/lang/instrument \
128     sun/invoke \
129     sun/misc \
130     sun/reflect \
131     jdk/internal/reflect \
132     jdk/lambda \
133     jdk/internal/loader \
134     jdk/internal/misc \
135     jdk/internal/ref \
136     jdk/internal/jimage \
137     jdk/internal/math \
138     jdk/internal/vm \
139     jdk/modules \
140     jni/nullCaller









141 
142 # All of the java.util package
143 jdk_util = \
144     :jdk_util_other \
145     :jdk_collections \
146     :jdk_concurrent \
147     :jdk_stream
148 





149 # All util components not part of some other util category
150 jdk_util_other = \
151     java/util \
152     sun/util \
153     jdk/internal/util \
154     -:jdk_collections \
155     -:jdk_concurrent \
156     -:jdk_stream
157 
158 # All collections, core and concurrent
159 jdk_collections = \
160     :jdk_collections_core \
161     :jdk_concurrent
162 
163 # java.util.concurrent
164 # Includes concurrent collections plus other stuff
165 # Maintained by JSR-166 EG (Doug Lea et al)
166 jdk_concurrent = \
167     java/util/concurrent
168 

 28 all = \
 29     :jdk_all
 30 
 31 jdk_all = \
 32     /
 33 
 34 ###############################################################################
 35 #
 36 # Tiered testing definitions
 37 #
 38 
 39 # When adding tests to tier1, make sure they end up in one of the tier1_partX groups
 40 tier1 = \
 41     :tier1_part1 \
 42     :tier1_part2 \
 43     :tier1_part3
 44 
 45 tier1_part1 = \
 46     :jdk_lang
 47 
 48 tier1_part1_no_valhalla = \
 49     :tier1_part1 \
 50     -:jdk_valhalla
 51 
 52 tier1_part2 = \
 53     :jdk_util
 54 
 55 tier1_part2_no_valhalla = \
 56     :tier1_part2 \
 57     -:jdk_valhalla
 58 
 59 tier1_part3 = \
 60     :jdk_math \
 61     :jdk_svc_sanity \
 62     :jdk_foreign \
 63     :jdk_vector_sanity \
 64     java/nio/Buffer \
 65     com/sun/crypto/provider/Cipher \
 66     jdk/classfile \
 67     sun/nio/cs/ISO8859x.java
 68 
 69 tier1_part3_no_valhalla = \
 70     :tier1_part3 \
 71     -:jdk_valhalla
 72 
 73 tier1_no_valhalla = \
 74     :tier1 \
 75     -:jdk_valhalla
 76 
 77 # When adding tests to tier2, make sure they end up in one of the tier2_partX groups
 78 tier2 = \
 79     :tier2_part1 \
 80     :tier2_part2 \
 81     :tier2_part3
 82 
 83 # com/sun/crypto/provider/Cipher is in tier1 because of JDK-8132855
 84 tier2_part1 = \
 85     :jdk_security \
 86     -com/sun/crypto/provider/Cipher
 87 
 88 # sun/nio/cs/ISO8859x.java and java/nio/Buffer are in tier1 because of JDK-8132854
 89 tier2_part2 = \
 90     :core_tools \
 91     :jdk_io \
 92     :jdk_nio \
 93     -java/nio/Buffer \
 94     -sun/nio/cs/ISO8859x.java \
 95     :jdk_other \
 96     :jdk_text \

136 build = \
137     build
138 
139 # java.lang package and VM runtime support
140 jdk_lang = \
141     java/lang \
142     -java/lang/management \
143     -java/lang/instrument \
144     sun/invoke \
145     sun/misc \
146     sun/reflect \
147     jdk/internal/reflect \
148     jdk/lambda \
149     jdk/internal/loader \
150     jdk/internal/misc \
151     jdk/internal/ref \
152     jdk/internal/jimage \
153     jdk/internal/math \
154     jdk/internal/vm \
155     jdk/modules \
156     jni/nullCaller \
157     valhalla
158 
159 # valhalla lworld tests
160 jdk_valhalla = \
161     valhalla \
162     java/lang/instrument/valhalla \
163     com/sun/jdi/valhalla \
164     java/lang/reflect/valhalla
165 
166 
167 # All of the java.util package
168 jdk_util = \
169     :jdk_util_other \
170     :jdk_collections \
171     :jdk_concurrent \
172     :jdk_stream
173 
174 valhalla_adopted = \
175     java/util/Collections/AddAll.java \
176     java/util/Arrays \
177     java/util/Collections
178 
179 # All util components not part of some other util category
180 jdk_util_other = \
181     java/util \
182     sun/util \
183     jdk/internal/util \
184     -:jdk_collections \
185     -:jdk_concurrent \
186     -:jdk_stream
187 
188 # All collections, core and concurrent
189 jdk_collections = \
190     :jdk_collections_core \
191     :jdk_concurrent
192 
193 # java.util.concurrent
194 # Includes concurrent collections plus other stuff
195 # Maintained by JSR-166 EG (Doug Lea et al)
196 jdk_concurrent = \
197     java/util/concurrent
198 
< prev index next >