mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
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
281 changed files with 284 additions and 280 deletions
|
@ -34,3 +34,7 @@ requires.properties=sun.arch.data.model
|
||||||
|
|
||||||
# Tests using jtreg 4.1 b11 features
|
# Tests using jtreg 4.1 b11 features
|
||||||
requiredVersion=4.1 b11
|
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
|
* @bug 8031321
|
||||||
* @summary Verify processing of UseBMI1Instructions option on CPU with
|
* @summary Verify processing of UseBMI1Instructions option on CPU with
|
||||||
* BMI1 feature support.
|
* BMI1 feature support.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseBMI1InstructionsOnSupportedCPU
|
* @build TestUseBMI1InstructionsOnSupportedCPU
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify processing of UseBMI1Instructions option on CPU without
|
* @summary Verify processing of UseBMI1Instructions option on CPU without
|
||||||
* BMI1 feature support.
|
* BMI1 feature support.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseBMI1InstructionsOnUnsupportedCPU
|
* @build TestUseBMI1InstructionsOnUnsupportedCPU
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify processing of UseCountLeadingZerosInstruction option
|
* @summary Verify processing of UseCountLeadingZerosInstruction option
|
||||||
* on CPU with LZCNT support.
|
* on CPU with LZCNT support.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseCountLeadingZerosInstructionOnSupportedCPU
|
* @build TestUseCountLeadingZerosInstructionOnSupportedCPU
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify processing of UseCountLeadingZerosInstruction option
|
* @summary Verify processing of UseCountLeadingZerosInstruction option
|
||||||
* on CPU without LZCNT support.
|
* on CPU without LZCNT support.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseCountLeadingZerosInstructionOnUnsupportedCPU
|
* @build TestUseCountLeadingZerosInstructionOnUnsupportedCPU
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify processing of UseCountTrailingZerosInstruction option
|
* @summary Verify processing of UseCountTrailingZerosInstruction option
|
||||||
* on CPU with TZCNT (BMI1 feature) support.
|
* on CPU with TZCNT (BMI1 feature) support.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseCountTrailingZerosInstructionOnSupportedCPU
|
* @build TestUseCountTrailingZerosInstructionOnSupportedCPU
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify processing of UseCountTrailingZerosInstruction option
|
* @summary Verify processing of UseCountTrailingZerosInstruction option
|
||||||
* on CPU without TZCNT instruction (BMI1 feature) support.
|
* on CPU without TZCNT instruction (BMI1 feature) support.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseCountTrailingZerosInstructionOnUnsupportedCPU
|
* @build TestUseCountTrailingZerosInstructionOnUnsupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8072016
|
* @bug 8072016
|
||||||
* @summary Infinite deoptimization/recompilation cycles in case of arraycopy with tightly coupled allocation
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestArrayCopyNoInitDeopt
|
* @build TestArrayCopyNoInitDeopt
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 6589834
|
* @bug 6589834
|
||||||
* @summary Safepoint placed between stack pointer increment and decrement leads
|
* @summary Safepoint placed between stack pointer increment and decrement leads
|
||||||
* to interpreter's stack corruption after deoptimization.
|
* to interpreter's stack corruption after deoptimization.
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.compiler
|
* java.compiler
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -33,7 +33,7 @@ import java.net.URLConnection;
|
||||||
* @test TestAnonymousClassUnloading
|
* @test TestAnonymousClassUnloading
|
||||||
* @bug 8054402
|
* @bug 8054402
|
||||||
* @summary "Tests unloading of anonymous classes."
|
* @summary "Tests unloading of anonymous classes."
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* @compile TestAnonymousClassUnloading.java
|
* @compile TestAnonymousClassUnloading.java
|
||||||
* @run main ClassFileInstaller TestAnonymousClassUnloading
|
* @run main ClassFileInstaller TestAnonymousClassUnloading
|
||||||
|
|
|
@ -31,7 +31,7 @@ import java.net.URLClassLoader;
|
||||||
* @test MethodUnloadingTest
|
* @test MethodUnloadingTest
|
||||||
* @bug 8029443
|
* @bug 8029443
|
||||||
* @summary "Tests the unloading of methods to to class unloading"
|
* @summary "Tests the unloading of methods to to class unloading"
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @build TestMethodUnloading
|
* @build TestMethodUnloading
|
||||||
* @build WorkerClass
|
* @build WorkerClass
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.WhiteBox;
|
||||||
/*
|
/*
|
||||||
* @test CheckSegmentedCodeCache
|
* @test CheckSegmentedCodeCache
|
||||||
* @bug 8015774
|
* @bug 8015774
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @summary "Checks VM options related to the segmented code cache"
|
* @summary "Checks VM options related to the segmented code cache"
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -34,7 +34,7 @@ import jdk.test.lib.Asserts;
|
||||||
/*
|
/*
|
||||||
* @test OverflowCodeCacheTest
|
* @test OverflowCodeCacheTest
|
||||||
* @bug 8059550
|
* @bug 8059550
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.management
|
* @modules java.management
|
||||||
* @build OverflowCodeCacheTest
|
* @build OverflowCodeCacheTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -30,7 +30,7 @@ import sun.hotspot.code.BlobType;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8015774
|
* @bug 8015774
|
||||||
* @summary Verify SegmentedCodeCache option's processing
|
* @summary Verify SegmentedCodeCache option's processing
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.compiler
|
* java.compiler
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -31,7 +31,7 @@ import java.util.EnumSet;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8015774
|
* @bug 8015774
|
||||||
* @summary Verify processing of options related to code heaps sizing.
|
* @summary Verify processing of options related to code heaps sizing.
|
||||||
* @library /testlibrary .. /../../test/lib
|
* @library /testlibrary .. /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.compiler
|
* java.compiler
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -30,7 +30,7 @@ import java.util.EnumSet;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8015774
|
* @bug 8015774
|
||||||
* @summary Verify that PrintCodeCache option print correct information.
|
* @summary Verify that PrintCodeCache option print correct information.
|
||||||
* @library /testlibrary .. /../../test/lib
|
* @library /testlibrary .. /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.compiler
|
* java.compiler
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -48,7 +48,7 @@ import java.util.stream.Collectors;
|
||||||
* @test SegmentedCodeCacheDtraceTest
|
* @test SegmentedCodeCacheDtraceTest
|
||||||
* @bug 8015774
|
* @bug 8015774
|
||||||
* @requires os.family=="solaris"
|
* @requires os.family=="solaris"
|
||||||
* @library /testlibrary / /../../test/lib
|
* @library /testlibrary / /test/lib
|
||||||
* @build SegmentedCodeCacheDtraceTestWorker
|
* @build SegmentedCodeCacheDtraceTestWorker
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @test BeanTypeTest
|
* @test BeanTypeTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.management
|
* @modules java.management
|
||||||
* @build BeanTypeTest
|
* @build BeanTypeTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @test CodeHeapBeanPresenceTest
|
* @test CodeHeapBeanPresenceTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.management
|
* @modules java.management
|
||||||
* @build CodeHeapBeanPresenceTest
|
* @build CodeHeapBeanPresenceTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -29,7 +29,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test GetUsageTest
|
* @test GetUsageTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build GetUsageTest
|
* @build GetUsageTest
|
||||||
|
|
|
@ -29,7 +29,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test InitialAndMaxUsageTest
|
* @test InitialAndMaxUsageTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build InitialAndMaxUsageTest
|
* @build InitialAndMaxUsageTest
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @test ManagerNamesTest
|
* @test ManagerNamesTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.management
|
* @modules java.management
|
||||||
* @build ManagerNamesTest
|
* @build ManagerNamesTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -32,7 +32,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @test MemoryPoolsPresenceTest
|
* @test MemoryPoolsPresenceTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.management
|
* @modules java.management
|
||||||
* @build MemoryPoolsPresenceTest
|
* @build MemoryPoolsPresenceTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test PeakUsageTest
|
* @test PeakUsageTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build PeakUsageTest
|
* @build PeakUsageTest
|
||||||
|
|
|
@ -37,7 +37,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test PoolsIndependenceTest
|
* @test PoolsIndependenceTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @build PoolsIndependenceTest
|
* @build PoolsIndependenceTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||||
|
|
|
@ -34,7 +34,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test ThresholdNotificationsTest
|
* @test ThresholdNotificationsTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build ThresholdNotificationsTest
|
* @build ThresholdNotificationsTest
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test UsageThresholdExceededSeveralTimesTest
|
* @test UsageThresholdExceededSeveralTimesTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build UsageThresholdExceededTest
|
* @build UsageThresholdExceededTest
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test UsageThresholdExceededTest
|
* @test UsageThresholdExceededTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build UsageThresholdExceededTest
|
* @build UsageThresholdExceededTest
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test UsageThresholdIncreasedTest
|
* @test UsageThresholdIncreasedTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build UsageThresholdIncreasedTest
|
* @build UsageThresholdIncreasedTest
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test UsageThresholdNotExceededTest
|
* @test UsageThresholdNotExceededTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build UsageThresholdNotExceededTest
|
* @build UsageThresholdNotExceededTest
|
||||||
|
|
|
@ -29,7 +29,7 @@ import jdk.test.lib.Platform;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test OverloadCompileQueueTest
|
* @test OverloadCompileQueueTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @ignore 8071905
|
* @ignore 8071905
|
||||||
|
|
|
@ -28,7 +28,7 @@ import sun.hotspot.code.BlobType;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test RandomAllocationTest
|
* @test RandomAllocationTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build RandomAllocationTest
|
* @build RandomAllocationTest
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test UnexpectedDeoptimizationTest
|
* @test UnexpectedDeoptimizationTest
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build UnexpectedDeoptimizationTest
|
* @build UnexpectedDeoptimizationTest
|
||||||
|
|
|
@ -40,7 +40,7 @@ import java.util.regex.Pattern;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8135068
|
* @bug 8135068
|
||||||
* @summary Tests CompilerCommand's method matcher
|
* @summary Tests CompilerCommand's method matcher
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ../share /
|
* @library /testlibrary /test/lib /compiler/whitebox ../share /
|
||||||
* @build MethodMatcherTest
|
* @build MethodMatcherTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8063086
|
* @bug 8063086
|
||||||
* @summary X^2 special case for C2 yields different result than interpreter
|
* @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
|
* @modules java.management
|
||||||
* @build TestPow2
|
* @build TestPow2
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -26,7 +26,7 @@ import java.util.Objects;
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8130832
|
* @bug 8130832
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox /compiler/testlibrary
|
* @library /testlibrary /test/lib /compiler/whitebox /compiler/testlibrary
|
||||||
* @build IntrinsicAvailableTest
|
* @build IntrinsicAvailableTest
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
* sun.hotspot.WhiteBox$WhiteBoxPermission
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of ANDN instruction
|
* and w/o usage of ANDN instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestAndnI BMITestRunner Expr
|
* @build TestAndnI BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of ANDN instruction
|
* and w/o usage of ANDN instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestAndnL BMITestRunner Expr
|
* @build TestAndnL BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of BLSI instruction
|
* and w/o usage of BLSI instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestBlsiI BMITestRunner Expr
|
* @build TestBlsiI BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of BLSI instruction
|
* and w/o usage of BLSI instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestBlsiL BMITestRunner Expr
|
* @build TestBlsiL BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of BLSMSK instruction
|
* and w/o usage of BLSMSK instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestBlsmskI BMITestRunner Expr
|
* @build TestBlsmskI BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of BLSMSK instruction
|
* and w/o usage of BLSMSK instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestBlsmskL BMITestRunner Expr
|
* @build TestBlsmskL BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of BLSR instruction
|
* and w/o usage of BLSR instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestBlsrI BMITestRunner Expr
|
* @build TestBlsrI BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of BLSR instruction
|
* and w/o usage of BLSR instruction
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestBlsrL BMITestRunner Expr
|
* @build TestBlsrL BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of intrinsic
|
* and w/o usage of intrinsic
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestLzcntI BMITestRunner Expr
|
* @build TestLzcntI BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of intrinsic
|
* and w/o usage of intrinsic
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestLzcntL BMITestRunner Expr
|
* @build TestLzcntL BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of intrinsic
|
* and w/o usage of intrinsic
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestTzcntI BMITestRunner Expr
|
* @build TestTzcntI BMITestRunner Expr
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @summary Verify that results of computations are the same w/
|
* @summary Verify that results of computations are the same w/
|
||||||
* and w/o usage of intrinsic
|
* and w/o usage of intrinsic
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestTzcntL BMITestRunner Expr
|
* @build TestTzcntL BMITestRunner Expr
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build AddnTestI
|
* @build AddnTestI
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build AddnTestL
|
* @build AddnTestL
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build BlsiTestI
|
* @build BlsiTestI
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build BlsiTestL
|
* @build BlsiTestL
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build BlsmskTestI
|
* @build BlsmskTestI
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build BlsmskTestL
|
* @build BlsmskTestL
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build BlsrTestI
|
* @build BlsrTestI
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build BlsrTestL
|
* @build BlsrTestL
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build LZcntTestI
|
* @build LZcntTestI
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build LZcntTestL
|
* @build LZcntTestL
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TZcntTestI
|
* @build TZcntTestI
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @bug 8031321
|
* @bug 8031321
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox ..
|
* @library /testlibrary /test/lib /compiler/whitebox ..
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TZcntTestL
|
* @build TZcntTestL
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test NullCheckDroppingsTest
|
* @test NullCheckDroppingsTest
|
||||||
* @bug 8054492
|
* @bug 8054492
|
||||||
* @summary "Casting can result in redundant null checks in generated code"
|
* @summary "Casting can result in redundant null checks in generated code"
|
||||||
* @library /testlibrary /../../test/lib
|
* @library /testlibrary /test/lib
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build ClassFileInstaller sun.hotspot.WhiteBox jdk.test.lib.*
|
* @build ClassFileInstaller sun.hotspot.WhiteBox jdk.test.lib.*
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @test
|
* @test
|
||||||
* @library /testlibrary /../../test/lib /compiler/whitebox
|
* @library /testlibrary /test/lib /compiler/whitebox
|
||||||
* /compiler/testlibrary
|
* /compiler/testlibrary
|
||||||
* @modules java.base/sun.misc
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA1Intrinsics option processing on supported CPU,
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHA1IntrinsicsOptionOnSupportedCPU
|
* @build TestUseSHA1IntrinsicsOptionOnSupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA1Intrinsics option processing on unsupported CPU,
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHA1IntrinsicsOptionOnUnsupportedCPU
|
* @build TestUseSHA1IntrinsicsOptionOnUnsupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA256Intrinsics option processing on supported CPU,
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHA256IntrinsicsOptionOnSupportedCPU
|
* @build TestUseSHA256IntrinsicsOptionOnSupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA256Intrinsics option processing on unsupported CPU,
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHA256IntrinsicsOptionOnUnsupportedCPU
|
* @build TestUseSHA256IntrinsicsOptionOnUnsupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA512Intrinsics option processing on supported CPU.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHA512IntrinsicsOptionOnSupportedCPU
|
* @build TestUseSHA512IntrinsicsOptionOnSupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA512Intrinsics option processing on unsupported CPU,
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHA512IntrinsicsOptionOnUnsupportedCPU
|
* @build TestUseSHA512IntrinsicsOptionOnUnsupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA option processing on supported CPU,
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHAOptionOnSupportedCPU
|
* @build TestUseSHAOptionOnSupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify UseSHA option processing on unsupported CPU.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestUseSHAOptionOnUnsupportedCPU
|
* @build TestUseSHAOptionOnUnsupportedCPU
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify that SHA-1 intrinsic is actually used.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestSHA intrinsics.Verifier TestSHA1Intrinsics
|
* @build TestSHA intrinsics.Verifier TestSHA1Intrinsics
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify that SHA-1 multi block intrinsic is actually used.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestSHA intrinsics.Verifier TestSHA1MultiBlockIntrinsics
|
* @build TestSHA intrinsics.Verifier TestSHA1MultiBlockIntrinsics
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify that SHA-256 intrinsic is actually used.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestSHA intrinsics.Verifier TestSHA256Intrinsics
|
* @build TestSHA intrinsics.Verifier TestSHA256Intrinsics
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify that SHA-256 multi block intrinsic is actually used.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestSHA intrinsics.Verifier TestSHA256MultiBlockIntrinsics
|
* @build TestSHA intrinsics.Verifier TestSHA256MultiBlockIntrinsics
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify that SHA-512 intrinsic is actually used.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestSHA intrinsics.Verifier TestSHA512Intrinsics
|
* @build TestSHA intrinsics.Verifier TestSHA512Intrinsics
|
||||||
|
|
|
@ -27,7 +27,7 @@ import sha.predicate.IntrinsicPredicates;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8035968
|
* @bug 8035968
|
||||||
* @summary Verify that SHA-512 multi block intrinsic is actually used.
|
* @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
|
* @modules java.base/sun.misc
|
||||||
* java.management
|
* java.management
|
||||||
* @build TestSHA intrinsics.Verifier TestSHA512MultiBlockIntrinsics
|
* @build TestSHA intrinsics.Verifier TestSHA512MultiBlockIntrinsics
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @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
|
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
||||||
* compiler.jvmci.SecurityRestrictionsTest
|
* compiler.jvmci.SecurityRestrictionsTest
|
||||||
* NO_SEC_MAN
|
* NO_SEC_MAN
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build sun.hotspot.WhiteBox
|
* @build sun.hotspot.WhiteBox
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build sun.hotspot.WhiteBox
|
* @build sun.hotspot.WhiteBox
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library / /testlibrary /../../test/lib/
|
* @library / /testlibrary /test/lib/
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @run main ClassFileInstaller
|
* @run main ClassFileInstaller
|
||||||
* jdk.vm.ci.hotspot.CompilerToVMHelper
|
* jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library / /testlibrary /../../test/lib
|
* @library / /testlibrary /test/lib
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @run main ClassFileInstaller
|
* @run main ClassFileInstaller
|
||||||
* jdk.vm.ci.hotspot.CompilerToVMHelper
|
* jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @ignore 8139700
|
* @ignore 8139700
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build sun.hotspot.WhiteBox
|
* @build sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build sun.hotspot.WhiteBox
|
* @build sun.hotspot.WhiteBox
|
||||||
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
* @run main ClassFileInstaller sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -21,7 +21,7 @@ import java.util.Map;
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build sun.hotspot.WhiteBox
|
* @build sun.hotspot.WhiteBox
|
||||||
* compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
|
* compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library / /testlibrary /../../test/lib
|
* @library / /testlibrary /test/lib
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build compiler.jvmci.compilerToVM.FindUniqueConcreteMethodTest
|
* @build compiler.jvmci.compilerToVM.FindUniqueConcreteMethodTest
|
||||||
* @run main ClassFileInstaller
|
* @run main ClassFileInstaller
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||||
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library / /testlibrary /../../test/lib
|
* @library / /testlibrary /test/lib
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build compiler.jvmci.compilerToVM.GetClassInitializerTest
|
* @build compiler.jvmci.compilerToVM.GetClassInitializerTest
|
||||||
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @ignore 8139385
|
* @ignore 8139385
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @build sun.hotspot.WhiteBox
|
* @build sun.hotspot.WhiteBox
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 8136421
|
* @bug 8136421
|
||||||
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9") & os.arch != "aarch64"
|
||||||
* @library /testlibrary /../../test/lib /
|
* @library /testlibrary /test/lib /
|
||||||
* @compile ../common/CompilerToVMHelper.java
|
* @compile ../common/CompilerToVMHelper.java
|
||||||
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
* @run main ClassFileInstaller jdk.vm.ci.hotspot.CompilerToVMHelper
|
||||||
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue