mirror of
https://github.com/openjdk/jdk.git
synced 2026-07-02 23:30:29 +00:00
8369020: Test compiler/intrinsics/TestLongUnsignedDivMod.java completed and timed out
Reviewed-by: mhaessig, thartmann
This commit is contained in:
parent
052bd362d9
commit
9b59c2dc76
@ -110,7 +110,6 @@ public class TestLongUnsignedDivMod {
|
||||
}
|
||||
|
||||
@Test // needs to be run in (fast) debug mode
|
||||
@Warmup(10000)
|
||||
@IR(counts = {IRNode.UDIV_L, ">= 1"}) // At least one UDivL node is generated if intrinsic is used
|
||||
public void testDivideUnsigned() {
|
||||
for (int i = 0; i < BUFFER_SIZE; i++) {
|
||||
@ -124,7 +123,6 @@ public class TestLongUnsignedDivMod {
|
||||
}
|
||||
|
||||
@Test // needs to be run in (fast) debug mode
|
||||
@Warmup(10000)
|
||||
@IR(counts = {IRNode.UMOD_L, ">= 1"}) // At least one UModL node is generated if intrinsic is used
|
||||
public void testRemainderUnsigned() {
|
||||
for (int i = 0; i < BUFFER_SIZE; i++) {
|
||||
@ -139,7 +137,6 @@ public class TestLongUnsignedDivMod {
|
||||
|
||||
|
||||
@Test // needs to be run in (fast) debug mode
|
||||
@Warmup(10000)
|
||||
@IR(applyIfPlatform = {"x64", "true"},
|
||||
counts = {IRNode.UDIV_MOD_L, ">= 1"}) // At least one UDivModL node is generated if intrinsic is used
|
||||
public void testDivModUnsigned() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user