Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8242310: use reproducible random in hotspot compiler tests
Reviewed-by: kvn, thartmann
- Loading branch information
Showing
with
258 additions
and 159 deletions.
- +1 −0 test/hotspot/jtreg/compiler/c2/PolynomialRoot.java
- +5 −2 test/hotspot/jtreg/compiler/c2/Test6661247.java
- +12 −7 test/hotspot/jtreg/compiler/c2/Test7047069.java
- +10 −4 test/hotspot/jtreg/compiler/c2/Test7160610.java
- +2 −1 test/hotspot/jtreg/compiler/c2/Test7177917.java
- +2 −1 test/hotspot/jtreg/compiler/codecache/cli/codeheapsize/TestCodeHeapSizeOptions.java
- +2 −1 test/hotspot/jtreg/compiler/codecache/dtrace/SegmentedCodeCacheDtraceTest.java
- +1 −4 test/hotspot/jtreg/compiler/codecache/stress/Helper.java
- +6 −2 test/hotspot/jtreg/compiler/codecache/stress/OverloadCompileQueueTest.java
- +9 −6 test/hotspot/jtreg/compiler/codecache/stress/RandomAllocationTest.java
- +7 −3 test/hotspot/jtreg/compiler/codecache/stress/UnexpectedDeoptimizationTest.java
- +2 −1 test/hotspot/jtreg/compiler/codegen/Test6896617.java
- +2 −1 test/hotspot/jtreg/compiler/codegen/Test7100757.java
- +2 −1 test/hotspot/jtreg/compiler/codegen/TestTrichotomyExpressions.java
- +2 −1 test/hotspot/jtreg/compiler/codegen/aes/TestAESMain.java
- +4 −2 test/hotspot/jtreg/compiler/codegen/aes/TestCipherBlockChainingEncrypt.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commandfile/CompileOnlyTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commandfile/ExcludeTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commandfile/LogTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commandfile/PrintTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commands/CompileOnlyTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commands/ExcludeTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commands/LogTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/commands/PrintTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/directives/CompileOnlyTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/directives/ExcludeTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/directives/LogTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/directives/PrintTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/AddAndRemoveTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/AddCompileOnlyTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/AddExcludeTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/AddLogTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/AddPrintAssemblyTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/ClearDirectivesStackTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/jcmd/PrintDirectivesTest.java
- +4 −2 test/hotspot/jtreg/compiler/compilercontrol/jcmd/StressAddMultiThreadedTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/matcher/MethodMatcherTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/mixed/RandomCommandsTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/mixed/RandomValidCommandsTest.java
- +2 −1 test/hotspot/jtreg/compiler/compilercontrol/parser/DirectiveStressTest.java
- +8 −7 test/hotspot/jtreg/compiler/compilercontrol/parser/HugeDirectiveUtil.java
- +2 −1 test/hotspot/jtreg/compiler/escapeAnalysis/TestSelfArrayCopy.java
- +5 −2 test/hotspot/jtreg/compiler/gcbarriers/UnsafeIntrinsicsTest.java
- +1 −1 test/hotspot/jtreg/compiler/interpreter/DisableOSRTest.java
- +1 −2 test/hotspot/jtreg/compiler/intrinsics/base64/TestBase64.java
- +2 −2 test/hotspot/jtreg/compiler/intrinsics/bigInteger/MontgomeryMultiplyTest.java
- +6 −7 test/hotspot/jtreg/compiler/intrinsics/bigInteger/TestMulAdd.java
- +6 −7 test/hotspot/jtreg/compiler/intrinsics/bigInteger/TestMultiplyToLen.java
- +5 −4 test/hotspot/jtreg/compiler/intrinsics/bigInteger/TestShift.java
- +6 −7 test/hotspot/jtreg/compiler/intrinsics/bigInteger/TestSquareToLen.java
- +5 −8 test/hotspot/jtreg/compiler/intrinsics/bmi/BMITestRunner.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestAndnI.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestAndnL.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestBlsiI.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestBlsiL.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestBlsmskI.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestBlsmskL.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestBlsrI.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestBlsrL.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestLzcntI.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestLzcntL.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestTzcntI.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/bmi/TestTzcntL.java
- +5 −2 test/hotspot/jtreg/compiler/intrinsics/math/TestFpMinMaxIntrinsics.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/AddExactILoadTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/AddExactILoopDependentTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/AddExactINonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/AddExactIRepeatTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/AddExactLNonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/MulExactILoadTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/MulExactILoopDependentTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/MulExactINonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/MulExactIRepeatTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/MulExactLNonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/NegExactILoadTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/NegExactILoopDependentTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/NegExactINonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/NegExactLNonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/SubExactILoadTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/SubExactILoopDependentTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/SubExactINonConstantTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/SubExactIRepeatTest.java
- +2 −1 test/hotspot/jtreg/compiler/intrinsics/mathexact/SubExactLNonConstantTest.java
- +3 −3 test/hotspot/jtreg/compiler/intrinsics/unsafe/DirectByteBufferTest.java
- +3 −3 test/hotspot/jtreg/compiler/intrinsics/unsafe/HeapByteBufferTest.java
- +2 −1 test/hotspot/jtreg/compiler/jsr292/ConcurrentClassLoadingTest.java
- +2 −1 test/hotspot/jtreg/compiler/jvmci/compilerToVM/AllocateCompileIdTest.java
- +2 −1 test/hotspot/jtreg/compiler/jvmci/compilerToVM/HasCompiledCodeForOSRTest.java
- +4 −1 test/hotspot/jtreg/compiler/loopopts/superword/Vec_MulAddS2I.java
- +2 −1 test/hotspot/jtreg/compiler/types/correctness/OffTest.java
- +2 −1 test/hotspot/jtreg/compiler/unsafe/UnsafeRaw.java
- +2 −2 test/hotspot/jtreg/compiler/unsafe/UnsafeSmallOffsetBooleanAccessTest.java
- +1 −1 test/hotspot/jtreg/compiler/whitebox/BlockingCompilation.java
Oops, something went wrong.