2013-08-28 02:05:53 +00:00
|
|
|
#
|
2016-03-01 17:10:50 +00:00
|
|
|
# Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
|
2013-08-28 02:05:53 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
# accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License version
|
|
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
|
|
# questions.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Profile-based Test Group Definitions
|
|
|
|
#
|
|
|
|
# These groups define the tests that cover the different possible runtimes:
|
|
|
|
# - compact1, compact2, compact3, full JRE, JDK
|
|
|
|
#
|
|
|
|
# In addition they support testing of the minimal VM on compact1 and compact2.
|
2013-10-18 03:30:17 +00:00
|
|
|
# Essentially this defines groups based around the specified API's and VM
|
2013-08-28 02:05:53 +00:00
|
|
|
# services available in the runtime.
|
|
|
|
#
|
|
|
|
# The groups are defined hierarchically in two forms:
|
|
|
|
# - The need_xxx groups list all the tests that have a dependency on
|
|
|
|
# a specific profile. This is either because it tests a feature in
|
|
|
|
# that profile, or the test infrastructure uses a feature in that
|
|
|
|
# profile.
|
|
|
|
# - The primary groups are defined in terms of the other primary groups
|
|
|
|
# combined with the needs_xxx groups (including and excluding them as
|
|
|
|
# appropriate). For example the jre can run all tests from compact3, plus
|
|
|
|
# those from needs_jre, but excluding those from need_jdk.
|
|
|
|
#
|
|
|
|
# The bottom group defines all the actual tests to be considered, simply
|
|
|
|
# by listing the top-level test directories.
|
|
|
|
#
|
|
|
|
# To use a group simply list it on the jtreg command line eg:
|
2013-10-18 03:30:17 +00:00
|
|
|
# jtreg :jdk
|
2013-08-28 02:05:53 +00:00
|
|
|
# runs all tests. While
|
2013-10-18 03:30:17 +00:00
|
|
|
# jtreg :compact2
|
2013-08-28 02:05:53 +00:00
|
|
|
# runs those tests that only require compact1 and compact2 API's.
|
|
|
|
#
|
|
|
|
|
2014-12-16 11:52:04 +00:00
|
|
|
hotspot_all = \
|
|
|
|
/
|
2016-03-31 15:39:00 +00:00
|
|
|
|
|
|
|
hotspot_compiler = \
|
|
|
|
compiler
|
|
|
|
|
|
|
|
hotspot_gc = \
|
|
|
|
gc
|
|
|
|
|
|
|
|
hotspot_runtime = \
|
|
|
|
runtime
|
|
|
|
|
|
|
|
hotspot_serviceability = \
|
|
|
|
serviceability
|
|
|
|
|
|
|
|
hotspot_misc = \
|
|
|
|
/ \
|
|
|
|
-:hotspot_compiler \
|
|
|
|
-:hotspot_gc \
|
|
|
|
-:hotspot_runtime \
|
|
|
|
-:hotspot_serviceability
|
2014-12-16 11:52:04 +00:00
|
|
|
|
2013-08-28 02:05:53 +00:00
|
|
|
# Full JDK can run all tests
|
|
|
|
#
|
|
|
|
jdk = \
|
|
|
|
:jre \
|
|
|
|
:needs_jdk
|
|
|
|
|
|
|
|
# Tests that require a full JDK to execute. Either they test a feature
|
|
|
|
# only in the JDK or they use tools that are only in the JDK. The latter
|
|
|
|
# can be resolved in some cases by using tools from the compile-jdk.
|
|
|
|
#
|
|
|
|
needs_jdk = \
|
2013-09-17 12:02:53 +00:00
|
|
|
gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
gc/metaspace/TestMetaspacePerfCounters.java \
|
2013-10-22 00:51:03 +00:00
|
|
|
gc/metaspace/TestPerfCountersAndMemoryPools.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/6819213/TestBootNativeLibraryPath.java \
|
|
|
|
runtime/7158988/FieldMonitor.java \
|
|
|
|
runtime/Metaspace/FragmentMetaspace.java \
|
|
|
|
runtime/NMT/BaselineWithParameter.java \
|
2014-08-11 14:30:46 +00:00
|
|
|
runtime/NMT/JcmdBaselineDetail.java \
|
|
|
|
runtime/NMT/JcmdDetailDiff.java \
|
|
|
|
runtime/NMT/JcmdScaleDetail.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/NMT/JcmdScale.java \
|
2014-08-11 14:30:46 +00:00
|
|
|
runtime/NMT/JcmdSummaryDiff.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/NMT/JcmdWithNMTDisabled.java \
|
2014-08-11 14:30:46 +00:00
|
|
|
runtime/NMT/MallocRoundingReportTest.java \
|
|
|
|
runtime/NMT/MallocSiteHashOverflow.java \
|
|
|
|
runtime/NMT/MallocStressTest.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/NMT/MallocTestType.java \
|
2014-09-09 16:48:42 +00:00
|
|
|
runtime/NMT/MallocTrackingVerify.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/NMT/ReleaseCommittedMemory.java \
|
2014-08-11 14:30:46 +00:00
|
|
|
runtime/NMT/ReleaseNoCommit.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/NMT/ShutdownTwice.java \
|
|
|
|
runtime/NMT/SummaryAfterShutdown.java \
|
|
|
|
runtime/NMT/SummarySanityCheck.java \
|
|
|
|
runtime/NMT/ThreadedMallocTestType.java \
|
|
|
|
runtime/NMT/ThreadedVirtualAllocTestType.java \
|
2014-08-11 14:30:46 +00:00
|
|
|
runtime/NMT/VirtualAllocCommitUncommitRecommit.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/NMT/VirtualAllocTestType.java \
|
|
|
|
runtime/RedefineObject/TestRedefineObject.java \
|
2014-05-30 14:20:51 +00:00
|
|
|
runtime/Thread/TestThreadDumpMonitorContention.java \
|
2015-01-08 19:42:05 +00:00
|
|
|
runtime/Thread/ThreadPriorities.java \
|
2013-09-14 01:36:27 +00:00
|
|
|
runtime/XCheckJniJsig/XCheckJSig.java \
|
2013-10-04 11:44:49 +00:00
|
|
|
serviceability/attach/AttachWithStalePidFile.java \
|
2014-01-14 14:27:01 +00:00
|
|
|
serviceability/sa/jmap-hprof/JMapHProfLargeHeapTest.java \
|
2016-01-14 12:35:21 +00:00
|
|
|
serviceability/dcmd/vm/DynLibsTest.java \
|
2016-03-28 10:49:34 +00:00
|
|
|
serviceability/tmtools
|
2013-10-04 11:44:49 +00:00
|
|
|
|
2013-08-28 02:05:53 +00:00
|
|
|
|
|
|
|
# JRE adds further tests to compact3
|
|
|
|
#
|
|
|
|
jre = \
|
|
|
|
:compact3 \
|
|
|
|
:needs_jre \
|
|
|
|
-:needs_jdk
|
|
|
|
|
|
|
|
# Tests that require the full JRE
|
|
|
|
#
|
|
|
|
needs_jre = \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/c2/6852078/Test6852078.java \
|
|
|
|
compiler/c2/7047069/Test7047069.java \
|
2013-10-22 00:51:03 +00:00
|
|
|
runtime/6294277/SourceDebugExtension.java \
|
|
|
|
runtime/ClassFile/JsrRewriting.java \
|
2015-02-24 13:08:25 +00:00
|
|
|
runtime/ClassFile/OomWhileParsingRepeatedJsr.java \
|
|
|
|
runtime/SharedArchiveFile/LimitSharedSizes.java \
|
|
|
|
runtime/SharedArchiveFile/SpaceUtilizationCheck.java
|
2013-08-28 02:05:53 +00:00
|
|
|
|
|
|
|
# Compact 3 adds further tests to compact2
|
|
|
|
#
|
|
|
|
compact3 = \
|
|
|
|
:compact2 \
|
|
|
|
:needs_compact3 \
|
|
|
|
-:needs_jre \
|
|
|
|
-:needs_jdk
|
|
|
|
|
|
|
|
|
|
|
|
# Tests that require compact3 API's
|
|
|
|
#
|
|
|
|
needs_compact3 = \
|
2016-01-15 12:03:46 +00:00
|
|
|
gc/TestFullGCCount.java \
|
2013-08-28 02:05:53 +00:00
|
|
|
gc/arguments/TestG1HeapRegionSize.java \
|
2014-03-17 15:29:13 +00:00
|
|
|
gc/arguments/TestDynMinHeapFreeRatio.java \
|
|
|
|
gc/arguments/TestDynMaxHeapFreeRatio.java \
|
2016-01-15 12:03:46 +00:00
|
|
|
gc/cms/TestMBeanCMS.java \
|
|
|
|
gc/g1/TestHumongousAllocInitialMark.java \
|
2014-09-29 07:59:23 +00:00
|
|
|
gc/g1/TestShrinkAuxiliaryData00.java \
|
|
|
|
gc/g1/TestShrinkAuxiliaryData05.java \
|
|
|
|
gc/g1/TestShrinkAuxiliaryData10.java \
|
|
|
|
gc/g1/TestShrinkAuxiliaryData15.java \
|
|
|
|
gc/g1/TestShrinkAuxiliaryData20.java \
|
|
|
|
gc/g1/TestShrinkAuxiliaryData25.java \
|
|
|
|
gc/g1/TestShrinkAuxiliaryData30.java \
|
2016-01-15 12:03:46 +00:00
|
|
|
gc/metaspace/TestMetaspaceMemoryPool.java \
|
2014-11-26 10:17:06 +00:00
|
|
|
gc/survivorAlignment \
|
2013-08-28 02:05:53 +00:00
|
|
|
runtime/InternalApi/ThreadCpuTimesDeadlock.java \
|
2015-06-17 13:22:38 +00:00
|
|
|
runtime/NMT/JcmdSummaryDiff.java \
|
|
|
|
runtime/RedefineTests/RedefineAnnotations.java
|
2015-05-19 11:13:15 +00:00
|
|
|
serviceability/sa/jmap-hashcode/Test8028623.java \
|
2014-03-06 08:45:59 +00:00
|
|
|
serviceability/threads/TestFalseDeadLock.java \
|
2015-02-03 11:49:33 +00:00
|
|
|
compiler/codecache/jmx \
|
2015-05-19 11:13:15 +00:00
|
|
|
compiler/jsr292/RedefineMethodUsedByMultipleMethodHandles.java \
|
|
|
|
compiler/rangechecks/TestRangeCheckSmearing.java \
|
2015-06-17 13:22:38 +00:00
|
|
|
compiler/whitebox/DeoptimizeMultipleOSRTest.java \
|
|
|
|
serviceability/dcmd \
|
|
|
|
testlibrary_tests/whitebox/vm_flags
|
2013-08-28 02:05:53 +00:00
|
|
|
|
|
|
|
# Compact 2 adds full VM tests
|
|
|
|
compact2 = \
|
|
|
|
:compact2_minimal \
|
2013-08-28 23:25:18 +00:00
|
|
|
:compact1 \
|
2013-08-28 02:05:53 +00:00
|
|
|
:needs_full_vm_compact2 \
|
|
|
|
-:needs_compact3 \
|
|
|
|
-:needs_jre \
|
|
|
|
-:needs_jdk
|
|
|
|
|
|
|
|
# Tests that require compact2 API's and a full VM
|
2013-10-18 03:30:17 +00:00
|
|
|
#
|
2013-08-28 02:05:53 +00:00
|
|
|
needs_full_vm_compact2 =
|
|
|
|
|
|
|
|
# Compact 1 adds full VM tests
|
|
|
|
#
|
|
|
|
compact1 = \
|
|
|
|
:compact1_minimal \
|
|
|
|
:needs_full_vm_compact1 \
|
|
|
|
-:needs_compact2 \
|
|
|
|
-:needs_full_vm_compact2 \
|
|
|
|
-:needs_compact3 \
|
|
|
|
-:needs_jre \
|
|
|
|
-:needs_jdk
|
|
|
|
|
|
|
|
# Tests that require compact1 API's and a full VM
|
|
|
|
#
|
|
|
|
needs_full_vm_compact1 = \
|
|
|
|
runtime/NMT \
|
|
|
|
gc/g1/TestRegionAlignment.java \
|
|
|
|
gc/g1/TestShrinkToOneRegion.java \
|
|
|
|
gc/metaspace/G1AddMetaspaceDependency.java \
|
2013-09-14 01:36:27 +00:00
|
|
|
gc/startup_warnings/TestCMS.java \
|
|
|
|
gc/startup_warnings/TestDefNewCMS.java \
|
|
|
|
gc/startup_warnings/TestParallelGC.java \
|
|
|
|
gc/startup_warnings/TestParallelScavengeSerialOld.java \
|
|
|
|
gc/startup_warnings/TestParNewCMS.java \
|
|
|
|
gc/startup_warnings/TestParNewSerialOld.java \
|
|
|
|
runtime/SharedArchiveFile/SharedArchiveFile.java
|
2013-08-28 02:05:53 +00:00
|
|
|
|
|
|
|
# Minimal VM on Compact 2 adds in some compact2 tests
|
|
|
|
#
|
|
|
|
compact2_minimal = \
|
|
|
|
:compact1_minimal \
|
|
|
|
:needs_compact2 \
|
2013-08-28 23:25:18 +00:00
|
|
|
-:needs_full_vm_compact2 \
|
2013-08-28 02:05:53 +00:00
|
|
|
-:needs_compact3 \
|
|
|
|
-:needs_jre \
|
|
|
|
-:needs_jdk
|
|
|
|
|
|
|
|
# Tests that require compact2 API's
|
|
|
|
#
|
2014-10-24 16:17:32 +00:00
|
|
|
needs_compact2 = \
|
|
|
|
compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
|
2013-08-28 02:05:53 +00:00
|
|
|
|
|
|
|
# All tests that run on the most minimal configuration: Minimal VM on Compact 1
|
|
|
|
compact1_minimal = \
|
|
|
|
serviceability/ \
|
|
|
|
compiler/ \
|
|
|
|
sanity/ \
|
|
|
|
runtime/ \
|
|
|
|
gc/ \
|
|
|
|
-:needs_full_vm_compact1 \
|
|
|
|
-:needs_full_vm_compact2 \
|
|
|
|
-:needs_compact2 \
|
|
|
|
-:needs_compact3 \
|
|
|
|
-:needs_jre \
|
|
|
|
-:needs_jdk
|
2014-06-11 14:56:01 +00:00
|
|
|
|
|
|
|
# All tests that explicitly set the G1 GC
|
|
|
|
#
|
|
|
|
needs_g1gc = \
|
|
|
|
compiler/regalloc/C1ObjectSpillInLogicOp.java \
|
2016-04-05 09:22:20 +00:00
|
|
|
gc/TestHumongousReferenceObject.java \
|
2016-03-01 17:10:50 +00:00
|
|
|
gc/TestSmallHeap.java \
|
2014-06-11 14:56:01 +00:00
|
|
|
gc/TestSystemGC.java \
|
|
|
|
gc/arguments/TestAlignmentToUseLargePages.java \
|
2016-03-01 17:10:50 +00:00
|
|
|
gc/arguments/TestG1ConcRefinementThreads.java \
|
2014-06-11 14:56:01 +00:00
|
|
|
gc/arguments/TestG1HeapRegionSize.java \
|
|
|
|
gc/arguments/TestG1HeapSizeFlags.java \
|
2015-01-29 05:08:38 +00:00
|
|
|
gc/arguments/TestG1PercentageOptions.java \
|
2014-06-11 14:56:01 +00:00
|
|
|
gc/arguments/TestMaxHeapSizeTools.java \
|
|
|
|
gc/arguments/TestMaxNewSize.java \
|
2014-10-02 09:22:02 +00:00
|
|
|
gc/arguments/TestParallelGCThreads.java \
|
2014-06-11 14:56:01 +00:00
|
|
|
gc/arguments/TestUseCompressedOopsErgo.java \
|
2014-08-06 07:55:16 +00:00
|
|
|
gc/class_unloading/TestG1ClassUnloadingHWM.java \
|
2015-07-01 18:04:18 +00:00
|
|
|
gc/ergonomics/TestDynamicNumberOfGCThreads.java \
|
2014-06-11 14:56:01 +00:00
|
|
|
gc/g1/ \
|
2016-03-01 17:10:50 +00:00
|
|
|
gc/logging/TestGCId.java \
|
2014-06-11 14:56:01 +00:00
|
|
|
gc/metaspace/G1AddMetaspaceDependency.java \
|
|
|
|
gc/metaspace/TestMetaspacePerfCounters.java \
|
2015-01-15 10:10:03 +00:00
|
|
|
gc/startup_warnings/TestG1.java \
|
2016-03-28 10:49:34 +00:00
|
|
|
gc/whitebox/TestConcMarkCycleWB.java
|
2014-06-11 14:56:01 +00:00
|
|
|
|
2015-02-27 10:56:34 +00:00
|
|
|
hotspot_native_sanity = \
|
|
|
|
native_sanity
|
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_compiler_1 = \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/arraycopy/ \
|
|
|
|
compiler/c1/ \
|
|
|
|
compiler/c2/ \
|
|
|
|
-compiler/c2/5091921/Test6850611.java \
|
|
|
|
-compiler/c2/5091921/Test6890943.java \
|
|
|
|
-compiler/c2/5091921/Test6905845.java \
|
|
|
|
-compiler/c2/6340864 \
|
|
|
|
-compiler/c2/6589834 \
|
|
|
|
-compiler/c2/6603011 \
|
|
|
|
-compiler/c2/6912517 \
|
|
|
|
-compiler/c2/6792161 \
|
|
|
|
-compiler/c2/7070134 \
|
|
|
|
-compiler/c2/8004867
|
2016-03-28 10:49:34 +00:00
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_compiler_2 = \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/classUnloading/ \
|
|
|
|
compiler/codecache/ \
|
2014-09-18 10:23:20 +00:00
|
|
|
compiler/codegen/ \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/cpuflags/ \
|
2014-11-20 10:06:26 +00:00
|
|
|
compiler/dependencies/ \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/eliminateAutobox/ \
|
|
|
|
compiler/escapeAnalysis/ \
|
2014-10-02 18:36:44 +00:00
|
|
|
compiler/exceptions/ \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/floatingpoint/ \
|
|
|
|
compiler/gcbarriers/ \
|
2014-09-18 10:23:20 +00:00
|
|
|
compiler/inlining/ \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/integerArithmetic/ \
|
|
|
|
compiler/interpreter/ \
|
2015-12-24 00:24:19 +00:00
|
|
|
compiler/jvmci/ \
|
2015-01-15 00:00:51 +00:00
|
|
|
-compiler/codegen/7184394 \
|
2016-03-28 10:49:34 +00:00
|
|
|
-compiler/codecache/stress \
|
|
|
|
-compiler/gcbarriers/PreserveFPRegistersTest.java
|
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_compiler_3 = \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/intrinsics/ \
|
|
|
|
compiler/jsr292/ \
|
|
|
|
compiler/loopopts/ \
|
|
|
|
compiler/macronodes/ \
|
2016-01-12 08:19:09 +00:00
|
|
|
compiler/memoryinitialization/ \
|
2014-11-18 18:44:45 +00:00
|
|
|
compiler/osr/ \
|
|
|
|
compiler/regalloc/ \
|
|
|
|
compiler/runtime/ \
|
|
|
|
compiler/startup/ \
|
|
|
|
compiler/types/ \
|
|
|
|
compiler/uncommontrap/ \
|
|
|
|
compiler/unsafe/ \
|
2016-02-29 12:02:10 +00:00
|
|
|
-compiler/intrinsics/adler32 \
|
|
|
|
-compiler/intrinsics/bmi \
|
2014-11-18 18:44:45 +00:00
|
|
|
-compiler/intrinsics/mathexact \
|
|
|
|
-compiler/intrinsics/multiplytolen \
|
|
|
|
-compiler/intrinsics/sha \
|
|
|
|
-compiler/loopopts/7052494 \
|
|
|
|
-compiler/runtime/6826736
|
2014-09-18 10:23:20 +00:00
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_compiler_closed = \
|
2015-02-18 13:19:48 +00:00
|
|
|
sanity/ExecuteInternalVMTests.java
|
2014-07-11 20:49:15 +00:00
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_gc_1 = \
|
2016-03-30 14:25:32 +00:00
|
|
|
gc/g1/
|
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_gc_2 = \
|
2014-12-11 06:32:24 +00:00
|
|
|
sanity/ExecuteInternalVMTests.java \
|
|
|
|
gc/ \
|
2016-03-30 14:25:32 +00:00
|
|
|
-gc/g1/ \
|
|
|
|
-gc/survivorAlignment/TestPromotionFromSurvivorToTenuredAfterMinorGC.java \
|
|
|
|
-gc/cms/TestMBeanCMS.java \
|
2014-12-11 06:32:24 +00:00
|
|
|
-gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
|
2014-07-11 20:49:15 +00:00
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_gc_closed = \
|
2015-01-07 09:19:00 +00:00
|
|
|
sanity/ExecuteInternalVMTests.java
|
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_gc_gcold = \
|
2015-01-07 14:02:00 +00:00
|
|
|
stress/gc/TestGCOld.java
|
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_runtime = \
|
2014-08-15 01:14:07 +00:00
|
|
|
runtime/ \
|
2015-10-07 15:37:46 +00:00
|
|
|
-runtime/ErrorHandling/ErrorHandler.java \
|
2014-08-15 01:14:07 +00:00
|
|
|
-runtime/RedefineObject/TestRedefineObject.java \
|
|
|
|
-runtime/8003720/Test8003720.java \
|
|
|
|
-runtime/Metaspace/FragmentMetaspace.java \
|
|
|
|
-runtime/Metaspace/FragmentMetaspaceSimple.java \
|
|
|
|
-runtime/Thread/TestThreadDumpMonitorContention.java \
|
|
|
|
-runtime/SharedArchiveFile/SharedBaseAddress.java \
|
|
|
|
-runtime/memory/ReserveMemory.java \
|
2015-10-02 13:06:22 +00:00
|
|
|
-runtime/memory/RunUnitTestsConcurrently.java \
|
2014-08-15 01:14:07 +00:00
|
|
|
-runtime/Unsafe/RangeCheck.java \
|
2016-03-25 12:54:18 +00:00
|
|
|
-runtime/SelectionResolution/AbstractMethodErrorTest.java \
|
|
|
|
-runtime/SelectionResolution/IllegalAccessErrorTest.java \
|
|
|
|
-runtime/SelectionResolution/InvokeInterfaceICCE.java \
|
|
|
|
-runtime/SelectionResolution/InvokeInterfaceSuccessTest.java \
|
|
|
|
-runtime/SelectionResolution/InvokeSpecialICCE.java \
|
|
|
|
-runtime/SelectionResolution/InvokeSpecialSuccessTest.java \
|
|
|
|
-runtime/SelectionResolution/InvokeStaticICCE.java \
|
|
|
|
-runtime/SelectionResolution/InvokeVirtualICCE.java \
|
|
|
|
-runtime/SelectionResolution/InvokeVirtualSuccessTest.java \
|
2014-08-15 01:14:07 +00:00
|
|
|
-runtime/SharedArchiveFile/CdsSameObjectAlignment.java \
|
|
|
|
-runtime/SharedArchiveFile/DefaultUseWithClient.java \
|
2014-09-11 14:46:32 +00:00
|
|
|
-runtime/Thread/CancellableThreadTest.java \
|
2015-04-23 19:47:23 +00:00
|
|
|
-runtime/7158988/FieldMonitor.java \
|
2015-06-19 04:57:31 +00:00
|
|
|
-runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java \
|
2015-04-29 14:03:49 +00:00
|
|
|
sanity/ \
|
2014-12-12 18:37:37 +00:00
|
|
|
testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java
|
2014-07-11 20:49:15 +00:00
|
|
|
|
2016-03-31 15:39:00 +00:00
|
|
|
hotspot_fast_serviceability = \
|
2014-09-30 08:22:58 +00:00
|
|
|
sanity/ExecuteInternalVMTests.java \
|
2016-01-14 15:03:03 +00:00
|
|
|
serviceability/dcmd/compiler \
|
|
|
|
serviceability/logging
|
2014-07-11 20:49:15 +00:00
|
|
|
|
2014-12-16 11:52:04 +00:00
|
|
|
hotspot_jprt = \
|
2016-03-31 15:39:00 +00:00
|
|
|
:hotspot_fast_compiler_1 \
|
|
|
|
:hotspot_fast_compiler_2 \
|
|
|
|
:hotspot_fast_compiler_3 \
|
|
|
|
:hotspot_fast_compiler_closed \
|
2016-04-07 13:01:16 +00:00
|
|
|
:hotspot_fast_gc_1 \
|
|
|
|
:hotspot_fast_gc_2 \
|
2016-03-31 15:39:00 +00:00
|
|
|
:hotspot_fast_gc_closed \
|
|
|
|
:hotspot_fast_gc_gcold \
|
|
|
|
:hotspot_fast_runtime \
|
|
|
|
:hotspot_fast_serviceability
|
2014-10-24 16:17:32 +00:00
|
|
|
|
|
|
|
#All tests that depends on nashorn extension.
|
|
|
|
#
|
|
|
|
needs_nashorn = \
|
|
|
|
compiler/jsr292/CreatesInterfaceDotEqualsCallInfo.java
|
|
|
|
|
|
|
|
#All tests that do not depends on nashorn extension
|
|
|
|
#
|
|
|
|
not_needs_nashorn = \
|
|
|
|
:jdk \
|
2014-11-18 18:44:45 +00:00
|
|
|
-:needs_nashorn
|
2016-01-14 12:35:21 +00:00
|
|
|
|
|
|
|
hotspot_tmtools = \
|
2016-03-28 10:49:34 +00:00
|
|
|
serviceability/tmtools
|