Skip to content

Commit 3e84ee6

Browse files
committed
[lworld] One more workaround for JDK-8366668
1 parent 320b11c commit 3e84ee6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/hotspot/jtreg/compiler/valhalla/inlinetypes/TestLWorld.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3494,7 +3494,8 @@ public void test117_verifier() {
34943494
MyValueEmpty[] arr1 = new MyValueEmpty[] { new MyValueEmpty() };
34953495
MyValueEmpty res = test117(arr1, arr1);
34963496
Asserts.assertEquals(res, new MyValueEmpty());
3497-
Asserts.assertEquals(arr1[0], new MyValueEmpty());
3497+
// TODO 8366668 Re-enable
3498+
// Asserts.assertEquals(arr1[0], new MyValueEmpty());
34983499
}
34993500

35003501
// Test acmp with empty inline types

0 commit comments

Comments
 (0)