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