8140189: [TESTBUG] Get rid of "@library /../../test/lib" in jtreg tests
Use new external.lib.roots property in TEST.ROOT so /../../test/lib is not needed. Reviewed-by: mseledtsov, sla, iklam
This commit is contained in:
parent
55e8101952
commit
d78d0c4fa4
hotspot/test
TEST.ROOT
compiler
arguments
TestUseBMI1InstructionsOnSupportedCPU.javaTestUseBMI1InstructionsOnUnsupportedCPU.javaTestUseCountLeadingZerosInstructionOnSupportedCPU.javaTestUseCountLeadingZerosInstructionOnUnsupportedCPU.javaTestUseCountTrailingZerosInstructionOnSupportedCPU.javaTestUseCountTrailingZerosInstructionOnUnsupportedCPU.java
arraycopy
c2/6589834
classUnloading
codecache
CheckSegmentedCodeCache.javaOverflowCodeCacheTest.java
cli
dtrace
jmx
BeanTypeTest.javaCodeHeapBeanPresenceTest.javaGetUsageTest.javaInitialAndMaxUsageTest.javaManagerNamesTest.javaMemoryPoolsPresenceTest.javaPeakUsageTest.javaPoolsIndependenceTest.javaThresholdNotificationsTest.javaUsageThresholdExceededSeveralTimesTest.javaUsageThresholdExceededTest.javaUsageThresholdIncreasedTest.javaUsageThresholdNotExceededTest.java
stress
compilercontrol/matcher
floatingpoint
intrinsics
IntrinsicAvailableTest.java
bmi
TestAndnI.javaTestAndnL.javaTestBlsiI.javaTestBlsiL.javaTestBlsmskI.javaTestBlsmskL.javaTestBlsrI.javaTestBlsrL.javaTestLzcntI.javaTestLzcntL.javaTestTzcntI.javaTestTzcntL.java
verifycode
classcast
mathexact/sanity
AddExactIntTest.javaAddExactLongTest.javaDecrementExactIntTest.javaDecrementExactLongTest.javaIncrementExactIntTest.javaIncrementExactLongTest.javaMultiplyExactIntTest.javaMultiplyExactLongTest.javaNegateExactIntTest.javaNegateExactLongTest.javaSubtractExactIntTest.javaSubtractExactLongTest.java
sha
cli
TestUseSHA1IntrinsicsOptionOnSupportedCPU.javaTestUseSHA1IntrinsicsOptionOnUnsupportedCPU.javaTestUseSHA256IntrinsicsOptionOnSupportedCPU.javaTestUseSHA256IntrinsicsOptionOnUnsupportedCPU.javaTestUseSHA512IntrinsicsOptionOnSupportedCPU.javaTestUseSHA512IntrinsicsOptionOnUnsupportedCPU.javaTestUseSHAOptionOnSupportedCPU.javaTestUseSHAOptionOnUnsupportedCPU.java
sanity
jvmci
SecurityRestrictionsTest.java
compilerToVM
AllocateCompileIdTest.javaCanInlineMethodTest.javaCollectCountersTest.javaDebugOutputTest.javaDisassembleCodeBlobTest.javaDoNotInlineOrCompileTest.javaExecuteInstalledCodeTest.javaFindUniqueConcreteMethodTest.javaGetBytecodeTest.javaGetClassInitializerTest.javaGetConstantPoolTest.javaGetExceptionTableTest.java
@ -34,3 +34,7 @@ requires.properties=sun.arch.data.model
|
||||
|
||||
# Tests using jtreg 4.1 b11 features
|
||||
requiredVersion=4.1 b11
|
||||
|
||||
# Path to libraries in the topmost test directory. This is needed so @library
|
||||
# does not need ../../ notation to reach them
|
||||
external.lib.roots = ../../
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify processing of UseBMI1Instructions option on CPU with
|
||||
* BMI1 feature support.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseBMI1InstructionsOnSupportedCPU
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify processing of UseBMI1Instructions option on CPU without
|
||||
* BMI1 feature support.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseBMI1InstructionsOnUnsupportedCPU
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify processing of UseCountLeadingZerosInstruction option
|
||||
* on CPU with LZCNT support.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseCountLeadingZerosInstructionOnSupportedCPU
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify processing of UseCountLeadingZerosInstruction option
|
||||
* on CPU without LZCNT support.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseCountLeadingZerosInstructionOnUnsupportedCPU
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify processing of UseCountTrailingZerosInstruction option
|
||||
* on CPU with TZCNT (BMI1 feature) support.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseCountTrailingZerosInstructionOnSupportedCPU
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify processing of UseCountTrailingZerosInstruction option
|
||||
* on CPU without TZCNT instruction (BMI1 feature) support.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseCountTrailingZerosInstructionOnUnsupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8072016
|
||||
* @summary Infinite deoptimization/recompilation cycles in case of arraycopy with tightly coupled allocation
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestArrayCopyNoInitDeopt
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @bug 6589834
|
||||
* @summary Safepoint placed between stack pointer increment and decrement leads
|
||||
* to interpreter's stack corruption after deoptimization.
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.compiler
|
||||
* java.management
|
||||
|
@ -33,7 +33,7 @@ import java.net.URLConnection;
|
||||
* @test TestAnonymousClassUnloading
|
||||
* @bug 8054402
|
||||
* @summary "Tests unloading of anonymous classes."
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* @compile TestAnonymousClassUnloading.java
|
||||
* @run main ClassFileInstaller TestAnonymousClassUnloading
|
||||
|
@ -31,7 +31,7 @@ import java.net.URLClassLoader;
|
||||
* @test MethodUnloadingTest
|
||||
* @bug 8029443
|
||||
* @summary "Tests the unloading of methods to to class unloading"
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @build TestMethodUnloading
|
||||
* @build WorkerClass
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.WhiteBox;
|
||||
/*
|
||||
* @test CheckSegmentedCodeCache
|
||||
* @bug 8015774
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @summary "Checks VM options related to the segmented code cache"
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -34,7 +34,7 @@ import jdk.test.lib.Asserts;
|
||||
/*
|
||||
* @test OverflowCodeCacheTest
|
||||
* @bug 8059550
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.management
|
||||
* @build OverflowCodeCacheTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -30,7 +30,7 @@ import sun.hotspot.code.BlobType;
|
||||
* @test
|
||||
* @bug 8015774
|
||||
* @summary Verify SegmentedCodeCache option's processing
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.compiler
|
||||
* java.management
|
||||
|
@ -31,7 +31,7 @@ import java.util.EnumSet;
|
||||
* @test
|
||||
* @bug 8015774
|
||||
* @summary Verify processing of options related to code heaps sizing.
|
||||
* @library /testlibrary .. /../../test/lib
|
||||
* @library /testlibrary .. /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.compiler
|
||||
* java.management
|
||||
|
@ -30,7 +30,7 @@ import java.util.EnumSet;
|
||||
* @test
|
||||
* @bug 8015774
|
||||
* @summary Verify that PrintCodeCache option print correct information.
|
||||
* @library /testlibrary .. /../../test/lib
|
||||
* @library /testlibrary .. /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.compiler
|
||||
* java.management
|
||||
|
@ -48,7 +48,7 @@ import java.util.stream.Collectors;
|
||||
* @test SegmentedCodeCacheDtraceTest
|
||||
* @bug 8015774
|
||||
* @requires os.family=="solaris"
|
||||
* @library /testlibrary / /../../test/lib
|
||||
* @library /testlibrary / /test/lib
|
||||
* @build SegmentedCodeCacheDtraceTestWorker
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/**
|
||||
* @test BeanTypeTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.management
|
||||
* @build BeanTypeTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/**
|
||||
* @test CodeHeapBeanPresenceTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.management
|
||||
* @build CodeHeapBeanPresenceTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -29,7 +29,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test GetUsageTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build GetUsageTest
|
||||
|
@ -29,7 +29,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test InitialAndMaxUsageTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build InitialAndMaxUsageTest
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/**
|
||||
* @test ManagerNamesTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.management
|
||||
* @build ManagerNamesTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -32,7 +32,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/**
|
||||
* @test MemoryPoolsPresenceTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.management
|
||||
* @build MemoryPoolsPresenceTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test PeakUsageTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build PeakUsageTest
|
||||
|
@ -37,7 +37,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test PoolsIndependenceTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @build PoolsIndependenceTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||
|
@ -34,7 +34,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test ThresholdNotificationsTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build ThresholdNotificationsTest
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test UsageThresholdExceededSeveralTimesTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build UsageThresholdExceededTest
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test UsageThresholdExceededTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build UsageThresholdExceededTest
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test UsageThresholdIncreasedTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build UsageThresholdIncreasedTest
|
||||
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test UsageThresholdNotExceededTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build UsageThresholdNotExceededTest
|
||||
|
@ -29,7 +29,7 @@ import jdk.test.lib.Platform;
|
||||
|
||||
/*
|
||||
* @test OverloadCompileQueueTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @ignore 8071905
|
||||
|
@ -28,7 +28,7 @@ import sun.hotspot.code.BlobType;
|
||||
|
||||
/*
|
||||
* @test RandomAllocationTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build RandomAllocationTest
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
/*
|
||||
* @test UnexpectedDeoptimizationTest
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build UnexpectedDeoptimizationTest
|
||||
|
@ -40,7 +40,7 @@ import java.util.regex.Pattern;
|
||||
* @test
|
||||
* @bug 8135068
|
||||
* @summary Tests CompilerCommand's method matcher
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ../share /
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ../share /
|
||||
* @build MethodMatcherTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8063086
|
||||
* @summary X^2 special case for C2 yields different result than interpreter
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* @modules java.management
|
||||
* @build TestPow2
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -26,7 +26,7 @@ import java.util.Objects;
|
||||
/*
|
||||
* @test
|
||||
* @bug 8130832
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox /compiler/testlibrary
|
||||
* @library /testlibrary /test/lib /compiler/whitebox /compiler/testlibrary
|
||||
* @build IntrinsicAvailableTest
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of ANDN instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestAndnI BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of ANDN instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestAndnL BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of BLSI instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestBlsiI BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of BLSI instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestBlsiL BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of BLSMSK instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestBlsmskI BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of BLSMSK instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestBlsmskL BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of BLSR instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestBlsrI BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of BLSR instruction
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestBlsrL BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of intrinsic
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestLzcntI BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of intrinsic
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestLzcntL BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of intrinsic
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestTzcntI BMITestRunner Expr
|
||||
|
@ -27,7 +27,7 @@
|
||||
* @bug 8031321
|
||||
* @summary Verify that results of computations are the same w/
|
||||
* and w/o usage of intrinsic
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestTzcntL BMITestRunner Expr
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build AddnTestI
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build AddnTestL
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build BlsiTestI
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build BlsiTestL
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build BlsmskTestI
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build BlsmskTestL
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build BlsrTestI
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build BlsrTestL
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build LZcntTestI
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build LZcntTestL
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TZcntTestI
|
||||
|
@ -24,7 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 8031321
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
||||
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TZcntTestL
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test NullCheckDroppingsTest
|
||||
* @bug 8054492
|
||||
* @summary "Casting can result in redundant null checks in generated code"
|
||||
* @library /testlibrary /../../test/lib
|
||||
* @library /testlibrary /test/lib
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build ClassFileInstaller sun.hotspot.WhiteBox jdk.test.lib.*
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
||||
* @library /testlibrary /test/lib /compiler/whitebox
|
||||
* /compiler/testlibrary
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA1Intrinsics option processing on supported CPU,
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHA1IntrinsicsOptionOnSupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA1Intrinsics option processing on unsupported CPU,
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHA1IntrinsicsOptionOnUnsupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA256Intrinsics option processing on supported CPU,
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHA256IntrinsicsOptionOnSupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA256Intrinsics option processing on unsupported CPU,
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHA256IntrinsicsOptionOnUnsupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA512Intrinsics option processing on supported CPU.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHA512IntrinsicsOptionOnSupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA512Intrinsics option processing on unsupported CPU,
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHA512IntrinsicsOptionOnUnsupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA option processing on supported CPU,
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHAOptionOnSupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify UseSHA option processing on unsupported CPU.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary testcases
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary testcases
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestUseSHAOptionOnUnsupportedCPU
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify that SHA-1 intrinsic is actually used.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary ../
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary ../
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestSHA intrinsics.Verifier TestSHA1Intrinsics
|
||||
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify that SHA-1 multi block intrinsic is actually used.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary ../
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary ../
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestSHA intrinsics.Verifier TestSHA1MultiBlockIntrinsics
|
||||
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify that SHA-256 intrinsic is actually used.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary ../
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary ../
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestSHA intrinsics.Verifier TestSHA256Intrinsics
|
||||
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify that SHA-256 multi block intrinsic is actually used.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary ../
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary ../
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestSHA intrinsics.Verifier TestSHA256MultiBlockIntrinsics
|
||||
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify that SHA-512 intrinsic is actually used.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary ../
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary ../
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestSHA intrinsics.Verifier TestSHA512Intrinsics
|
||||
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||
* @test
|
||||
* @bug 8035968
|
||||
* @summary Verify that SHA-512 multi block intrinsic is actually used.
|
||||
* @library /testlibrary /../../test/lib /compiler/testlibrary ../
|
||||
* @library /testlibrary /test/lib /compiler/testlibrary ../
|
||||
* @modules java.base/sun.misc
|
||||
* java.management
|
||||
* @build TestSHA intrinsics.Verifier TestSHA512MultiBlockIntrinsics
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
||||
* compiler.jvmci.SecurityRestrictionsTest
|
||||
* NO_SEC_MAN
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build sun.hotspot.WhiteBox
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build sun.hotspot.WhiteBox
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library / /testlibrary /../../test/lib/
|
||||
* @library / /testlibrary /test/lib/
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @run main ClassFileInstaller
|
||||
* jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library / /testlibrary /../../test/lib
|
||||
* @library / /testlibrary /test/lib
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @run main ClassFileInstaller
|
||||
* jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @ignore 8139700
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build sun.hotspot.WhiteBox
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build sun.hotspot.WhiteBox
|
||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||
|
@ -21,7 +21,7 @@ import java.util.Map;
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build sun.hotspot.WhiteBox
|
||||
* compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library / /testlibrary /../../test/lib
|
||||
* @library / /testlibrary /test/lib
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build compiler.jvmci.compilerToVM.FindUniqueConcreteMethodTest
|
||||
* @run main ClassFileInstaller
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
||||
|
@ -25,7 +25,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library / /testlibrary /../../test/lib
|
||||
* @library / /testlibrary /test/lib
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build compiler.jvmci.compilerToVM.GetClassInitializerTest
|
||||
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @ignore 8139385
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @build sun.hotspot.WhiteBox
|
||||
|
@ -26,7 +26,7 @@
|
||||
* @test
|
||||
* @bug 8136421
|
||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||
* @library /testlibrary /../../test/lib /
|
||||
* @library /testlibrary /test/lib /
|
||||
* @compile ../common/CompilerToVMHelper.java
|
||||
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user