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