Skip to content

Commit 115d3de

Browse files
author
David Simms
committedNov 1, 2024
[lworld] Adjust testing after merging jdk-24+18
1 parent 90c9079 commit 115d3de

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎test/hotspot/jtreg/ProblemList.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ containers/docker/TestJFREvents.java 8327723 linux-x64
128128

129129
# Valhalla
130130
runtime/AccModule/ConstModule.java 8294051 generic-all
131-
131+
compiler/gcbarriers/TestG1BarrierGeneration.java 8343420 generic-all
132132
#############################################################################
133133

134134
# :hotspot_serviceability

‎test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestArrays.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -2401,7 +2401,7 @@ public void test96_verifier() {
24012401

24022402
// Same as test95 but with instanceof instead of cast
24032403
@Test
2404-
@IR(failOn = CHECKCAST_ARRAY)
2404+
//FIX:8343423 @IR(failOn = CHECKCAST_ARRAY)
24052405
public boolean test97(Object[] array) {
24062406
array[0] = new NonValueClass(42);
24072407
// Always throws a ClassCastException because we just successfully stored
@@ -2425,8 +2425,8 @@ public void test97_verifier() {
24252425

24262426
// Same as test95 but with non-flattenable store
24272427
@Test
2428-
@IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2429-
failOn = CHECKCAST_ARRAY)
2428+
//FIX:8343423 @IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2429+
// failOn = CHECKCAST_ARRAY)
24302430
public MyValue1[] test98(Object[] array) {
24312431
array[0] = new NotFlattenable();
24322432
// Always throws a ClassCastException because we just successfully stored a
@@ -2454,8 +2454,8 @@ public void test98_verifier() {
24542454

24552455
// Same as test98 but with cmp user of cast result
24562456
@Test
2457-
@IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2458-
failOn = CHECKCAST_ARRAY)
2457+
//FIX:8343423 @IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2458+
// failOn = CHECKCAST_ARRAY)
24592459
public boolean test99(Object[] array) {
24602460
array[0] = new NotFlattenable();
24612461
// Always throws a ClassCastException because we just successfully stored a
@@ -2484,8 +2484,8 @@ public void test99_verifier() {
24842484

24852485
// Same as test98 but with instanceof instead of cast
24862486
@Test
2487-
@IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2488-
failOn = CHECKCAST_ARRAY)
2487+
//FIX:8343423 @IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2488+
// failOn = CHECKCAST_ARRAY)
24892489
public boolean test100(Object[] array) {
24902490
array[0] = new NotFlattenable();
24912491
// Always throws a ClassCastException because we just successfully stored a

0 commit comments

Comments
 (0)
Please sign in to comment.