1 # Copyright (c) 2013, 2019, 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 28 # When adding tests to tier1, make sure they end up in one of the tier1_partX groups 29 tier1 = \ 30 :tier1_part1 \ 31 :tier1_part2 \ 32 :tier1_part3 33 34 tier1_part1 = \ 35 :jdk_lang 36 37 tier1_part2 = \ 38 :jdk_util 39 40 tier1_part3 = \ 41 :jdk_math \ 42 :jdk_svc_sanity \ 43 :jdk_foreign \ 44 java/nio/Buffer \ 45 com/sun/crypto/provider/Cipher \ 46 sun/nio/cs/ISO8859x.java \ 47 tools/pack200 48 49 # When adding tests to tier2, make sure they end up in one of the tier2_partX groups 50 tier2 = \ 51 :tier2_part1 \ 52 :tier2_part2 \ 53 :tier2_part3 54 55 # com/sun/crypto/provider/Cipher is in tier1 because of JDK-8132855 56 tier2_part1 = \ 57 :jdk_security \ 58 -com/sun/crypto/provider/Cipher 59 60 # sun/nio/cs/ISO8859x.java and java/nio/Buffer are in tier1 because of JDK-8132854 61 tier2_part2 = \ 62 :core_tools \ 63 -tools/pack200 \ 64 :jdk_io \ 65 :jdk_nio \ 66 -java/nio/Buffer \ 67 -sun/nio/cs/ISO8859x.java \ 68 :jdk_other \ 69 :jdk_text \ 70 :jdk_time 71 72 tier2_part3 = \ 73 :jdk_net 74 75 tier3 = \ 76 :build \ 77 :jdk_rmi \ 78 :jdk_beans \ 79 :jdk_imageio \ 80 :jdk_sound \ 81 :jdk_client_sanity 82 83 ############################################################################### 84 # 85 # Other test definitions; generally smaller granularity than tiers 86 # 87 88 # Build source checking 89 build = \ 90 build 91 92 # java.lang package and VM runtime support 93 jdk_lang = \ 94 java/lang \ 95 -java/lang/management \ 96 -java/lang/instrument \ 97 sun/invoke \ 98 sun/misc \ 99 sun/reflect \ 100 jdk/internal/reflect \ 101 jdk/lambda \ 102 jdk/internal/loader \ 103 jdk/internal/misc \ 104 jdk/internal/ref \ 105 jdk/internal/jimage \ 106 jdk/internal/math \ 107 jdk/modules 108 109 # All of the java.util package 110 jdk_util = \ 111 :jdk_util_other \ 112 :jdk_collections \ 113 :jdk_concurrent \ 114 :jdk_stream 115 116 # All util components not part of some other util category 117 jdk_util_other = \ 118 java/util \ 119 sun/util \ 120 -:jdk_collections \ 121 -:jdk_concurrent \ 122 -:jdk_stream 123 124 # All collections, core and concurrent 125 jdk_collections = \ 126 :jdk_collections_core \ 127 :jdk_concurrent 128 129 # java.util.concurrent 130 # Includes concurrent collections plus other stuff 131 # Maintained by JSR-166 EG (Doug Lea et al) 132 jdk_concurrent = \ 133 java/util/concurrent 134 135 # Java Collections Framework core classes 136 jdk_collections_core = \ 137 java/util/AbstractCollection \ 138 java/util/AbstractList \ 139 java/util/AbstractMap \ 140 java/util/AbstractSequentialList \ 141 java/util/ArrayDeque \ 142 java/util/ArrayList \ 143 java/util/Arrays \ 144 java/util/BitSet \ 145 java/util/Collection \ 146 java/util/Collections \ 147 java/util/Comparator \ 148 java/util/Deque \ 149 java/util/EnumMap \ 150 java/util/EnumSet \ 151 java/util/HashMap \ 152 java/util/HashSet \ 153 java/util/Hashtable \ 154 java/util/IdentityHashMap \ 155 java/util/Iterator \ 156 java/util/LinkedHashMap \ 157 java/util/LinkedHashSet \ 158 java/util/LinkedList \ 159 java/util/List \ 160 java/util/Map \ 161 java/util/NavigableMap \ 162 java/util/PriorityQueue \ 163 java/util/TimSort \ 164 java/util/TreeMap \ 165 java/util/Vector \ 166 java/util/WeakHashMap 167 168 # java.util.stream (JSR-335) 169 jdk_stream = \ 170 java/util/Optional \ 171 java/util/function \ 172 java/util/stream 173 174 jdk_math = \ 175 java/math 176 177 jdk_io = \ 178 java/io 179 180 jdk_nio = \ 181 java/nio \ 182 sun/nio \ 183 jdk/nio 184 185 jdk_net = \ 186 java/net \ 187 com/sun/net/httpserver \ 188 sun/net \ 189 jdk/net 190 191 jdk_time = \ 192 java/time 193 194 jdk_rmi = \ 195 java/rmi \ 196 sun/rmi 197 198 jdk_security1 = \ 199 java/security 200 201 jdk_security2 = \ 202 javax/crypto \ 203 javax/xml/crypto \ 204 com/oracle/security/ucrypto \ 205 com/sun/crypto 206 207 jdk_security3 = \ 208 javax/security \ 209 -javax/security/auth/kerberos \ 210 com/sun/jarsigner \ 211 com/sun/security \ 212 -com/sun/security/jgss \ 213 com/sun/org/apache/xml/internal/security \ 214 jdk/security \ 215 sun/security \ 216 -sun/security/krb5 \ 217 -sun/security/jgss \ 218 javax/net 219 220 jdk_security4 = \ 221 com/sun/security/jgss \ 222 javax/security/auth/kerberos \ 223 sun/security/krb5 \ 224 sun/security/jgss 225 226 jdk_security = \ 227 :jdk_security1 \ 228 :jdk_security2 \ 229 :jdk_security3 \ 230 :jdk_security4 231 232 jdk_security_infra = \ 233 security/infra/java/security/cert/CertPathValidator/certification 234 235 jdk_text = \ 236 java/text \ 237 sun/text 238 239 jdk_management = \ 240 java/lang/management \ 241 com/sun/management \ 242 sun/management \ 243 jdk/internal/agent 244 245 jdk_instrument = \ 246 java/lang/instrument 247 248 jdk_jmx = \ 249 javax/management \ 250 com/sun/jmx 251 252 jdk_jdi = \ 253 com/sun/jdi 254 255 jdk_native_sanity = \ 256 native_sanity 257 258 # java launcher specific tests. 259 jdk_launcher = \ 260 tools/launcher \ 261 sun/tools 262 263 # 264 # Tool (and tool API) tests are split into core and svc groups 265 # 266 core_tools = \ 267 tools \ 268 jdk/internal/jrtfs \ 269 sun/tools/java \ 270 sun/tools/jrunscript 271 272 svc_tools = \ 273 com/sun/tools/attach \ 274 sun/tools \ 275 -sun/tools/java \ 276 -sun/tools/jrunscript \ 277 sun/jvmstat 278 279 jdk_tools = \ 280 :core_tools \ 281 :svc_tools 282 283 jdk_jfr = \ 284 jdk/jfr 285 286 # 287 # Catch-all for other areas with a small number of tests 288 # 289 jdk_other = \ 290 java/sql \ 291 javax/sql \ 292 javax/transaction \ 293 javax/rmi \ 294 javax/naming \ 295 javax/script \ 296 javax/smartcardio \ 297 javax/xml \ 298 -javax/xml/crypto \ 299 jdk/internal/jline \ 300 com/sun/jndi \ 301 lib/testlibrary 302 303 # 304 # SCTP is its own group as it is highly sensitive to kernel/network config 305 # 306 jdk_sctp = \ 307 com/sun/nio/sctp 308 309 310 # 311 # core group to run all core area tests 312 # 313 jdk_core = \ 314 :jdk_lang \ 315 :jdk_util \ 316 :jdk_math \ 317 :jdk_io \ 318 :jdk_nio \ 319 :jdk_net \ 320 :jdk_rmi \ 321 :jdk_time \ 322 :jdk_security \ 323 :jdk_text \ 324 :core_tools \ 325 :jdk_other 326 327 # 328 # svc group to run all serviceability area tests 329 # 330 jdk_svc = \ 331 :jdk_management \ 332 :jdk_instrument \ 333 :jdk_jmx \ 334 :jdk_jdi \ 335 :jdk_jfr \ 336 :svc_tools 337 338 jdk_foreign = \ 339 java/foreign 340 341 ############################# 342 343 # 344 # Client area groups 345 # 346 347 jdk_awt = \ 348 java/awt \ 349 com/apple/eawt \ 350 com/apple/laf \ 351 sun/awt 352 353 jdk_2d = \ 354 javax/print \ 355 sun/java2d 356 357 jdk_beans = \ 358 java/beans 359 360 jdk_swing = \ 361 javax/accessibility \ 362 javax/swing \ 363 com/sun/java/swing 364 365 jdk_sound = \ 366 javax/sound 367 368 jdk_imageio = \ 369 javax/imageio 370 371 jfc_demo = \ 372 demo/jfc 373 374 jdk_desktop = \ 375 :jdk_awt \ 376 :jdk_2d \ 377 :jdk_beans \ 378 :jdk_swing \ 379 :jdk_sound \ 380 :jdk_imageio \ 381 :jfc_demo \ 382 :jdk_client_sanity 383 384 # SwingSet3 tests. 385 jdk_client_sanity = \ 386 sanity/client/SwingSet 387 388 # This test group represents a subset of tests which are expected to 389 # exercise most of the most commonly used code in Swing applications. 390 # New failures in this area may be a problem. 391 jdk_swing_core = \ 392 :jdk_client_sanity \ 393 javax/swing 394 395 # The most commonly used printing APIs are included here along with swing core. 396 jdk_desktop_core = \ 397 :jdk_swing_core \ 398 java/awt/print 399 400 ############################################################################### 401 # 402 # Serviceability sanity groups 403 # 404 # These groups specify a subset of Serviceability tests that are supposed to 405 # guard against breakage of Serviceability features by other component teams. 406 407 jdk_svc_sanity = \ 408 :jdk_management_sanity \ 409 :jdk_instrument_sanity \ 410 :jdk_jmx_sanity \ 411 :jdk_jdi_sanity \ 412 :jdk_jfr_sanity \ 413 :svc_tools_sanity 414 415 jdk_management_sanity = 416 417 jdk_instrument_sanity = 418 419 jdk_jmx_sanity = 420 421 jdk_jdi_sanity = \ 422 com/sun/jdi/AcceptTimeout.java \ 423 com/sun/jdi/AccessSpecifierTest.java \ 424 com/sun/jdi/AfterThreadDeathTest.java \ 425 com/sun/jdi/ArrayRangeTest.java \ 426 com/sun/jdi/ConstantPoolInfo.java \ 427 com/sun/jdi/CountFilterTest.java \ 428 com/sun/jdi/EarlyReturnNegativeTest.java \ 429 com/sun/jdi/EarlyReturnTest.java \ 430 com/sun/jdi/FieldWatchpoints.java \ 431 com/sun/jdi/FramesTest.java \ 432 com/sun/jdi/InstanceFilter.java \ 433 com/sun/jdi/InterfaceMethodsTest.java \ 434 com/sun/jdi/InvokeTest.java \ 435 com/sun/jdi/LocalVariableEqual.java \ 436 com/sun/jdi/LocationTest.java \ 437 com/sun/jdi/ModificationWatchpoints.java \ 438 com/sun/jdi/MonitorEventTest.java \ 439 com/sun/jdi/MonitorFrameInfo.java \ 440 com/sun/jdi/NullThreadGroupNameTest.java \ 441 com/sun/jdi/PopAndStepTest.java \ 442 com/sun/jdi/PopAsynchronousTest.java \ 443 com/sun/jdi/ProcessAttachTest.java \ 444 com/sun/jdi/ReferrersTest.java \ 445 com/sun/jdi/RequestReflectionTest.java \ 446 com/sun/jdi/ResumeOneThreadTest.java \ 447 com/sun/jdi/RunToExit.java \ 448 com/sun/jdi/SourceNameFilterTest.java \ 449 com/sun/jdi/VarargsTest.java \ 450 com/sun/jdi/Vars.java \ 451 com/sun/jdi/redefineMethod/RedefineTest.java \ 452 com/sun/jdi/sde/MangleTest.java \ 453 com/sun/jdi/sde/TemperatureTableTest.java 454 455 jdk_jfr_sanity = \ 456 jdk/jfr/api/recording/event/TestLoadEventAfterStart.java \ 457 jdk/jfr/api/recording/state/TestState.java \ 458 jdk/jfr/event/os/TestCPULoad.java \ 459 jdk/jfr/event/compiler/TestAllocInNewTLAB.java \ 460 jdk/jfr/jcmd/TestJcmdStartStopDefault.java \ 461 jdk/jfr/event/io/TestFileStreamEvents.java \ 462 jdk/jfr/event/compiler/TestCompilerCompile.java \ 463 jdk/jfr/event/gc/collection/TestGCGarbageCollectionEvent.java \ 464 jdk/jfr/event/runtime/TestClassLoadEvent.java \ 465 jdk/jfr/event/runtime/TestJavaBlockedEvent.java \ 466 jdk/jfr/event/gc/collection/TestGCWithFasttime.java \ 467 jdk/jfr/event/gc/configuration/TestGCConfigurationEvent.java \ 468 jdk/jfr/event/metadata/TestDefaultConfigurations.java \ 469 jdk/jfr/startupargs/TestDumpOnExit.java 470 471 svc_tools_sanity = 472 473 ############################# 474 # 475 # Stable test groups 476 # 477 478 jdk_stable = \ 479 :jdk_core \ 480 :jdk_svc \ 481 :jdk_beans \ 482 :jdk_imageio \ 483 :jdk_sound \ 484 :jdk_sctp \ 485 javax/accessibility \ 486 com/sun/java/swing 487 488 needs_g1gc = \ 489 jdk/jfr/event/gc/refstat/TestRefStatEventWithG1ConcurrentMark.java \ 490 jdk/jfr/event/gc/refstat/TestRefStatEventWithG1FullCollection.java \ 491 jdk/jfr/event/gc/refstat/TestRefStatEventWithG1New.java \ 492 jdk/jfr/event/gc/detailed/TestEvacuationFailedEvent.java \ 493 jdk/jfr/event/gc/detailed/TestEvacuationInfoEvent.java \ 494 jdk/jfr/event/gc/detailed/TestG1ConcurrentModeFailureEvent.java \ 495 jdk/jfr/event/gc/collection/TestGCCauseWithG1ConcurrentMark.java \ 496 jdk/jfr/event/gc/collection/TestGCCauseWithG1FullCollection.java \ 497 jdk/jfr/event/gc/collection/TestYoungGarbageCollectionEventWithG1New.java \ 498 jdk/jfr/event/gc/collection/TestGCEventMixedWithG1FullCollection.java \ 499 jdk/jfr/event/gc/collection/TestGCEventMixedWithG1ConcurrentMark.java \ 500 jdk/jfr/event/gc/collection/TestG1ParallelPhases.java \ 501 jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1FullCollection.java \ 502 jdk/jfr/event/gc/objectcount/TestObjectCountAfterGCEventWithG1ConcurrentMark.java \ 503 jdk/jfr/event/gc/heapsummary/TestHeapSummaryEventG1.java