Skip to content

Commit c4dc654

Browse files
authored
Merge pull request #22923 from AditiS11/Issue-22916
Disable default value ValueTypeTests
2 parents 66de1f6 + 47b2150 commit c4dc654

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/functional/Valhalla/src_qtypes/org/openj9/test/lworld/ValueTypeTests.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1985,8 +1985,9 @@ static public void testCreateLargeNumberOfPoint2D() throws Throwable {
19851985
/*
19861986
* Create Array Objects with Point Class without initialization
19871987
* The array should be set to a Default Value.
1988+
* TODO:Fix with issue https://github.com/eclipse-openj9/openj9/issues/22642
19881989
*/
1989-
@Test(priority=4, invocationCount=2)
1990+
@Test(priority=4, invocationCount=2, enabled=false)
19901991
static public void testDefaultValueInPointArray() throws Throwable {
19911992
Object pointArray = Array.newInstance(point2DClass, genericArraySize);
19921993
for (int i = 0; i < genericArraySize; i++) {
@@ -2046,8 +2047,9 @@ static public void testDefaultValueInPointByteCodeMultiArray() throws Throwable
20462047
/*
20472048
* Create Array Objects with Flattened Line without initialization
20482049
* Check the fields of each element in arrays. No field should be NULL.
2050+
* TODO:Fix with issue https://github.com/eclipse-openj9/openj9/issues/22642
20492051
*/
2050-
@Test(priority=4, invocationCount=2)
2052+
@Test(priority=4, invocationCount=2, enabled=false)
20512053
static public void testDefaultValueInLineArray() throws Throwable {
20522054
Object flattenedLineArray = Array.newInstance(flattenedLine2DClass, genericArraySize);
20532055
for (int i = 0; i < genericArraySize; i++) {
@@ -2109,8 +2111,9 @@ static public void testDefaultValueInLineByteCodeMultiArray() throws Throwable {
21092111
/*
21102112
* Create Array Objects with triangle class without initialization
21112113
* Check the fields of each element in arrays. No field should be NULL.
2114+
* TODO:Fix with issue https://github.com/eclipse-openj9/openj9/issues/22642
21122115
*/
2113-
@Test(priority=4, invocationCount=2)
2116+
@Test(priority=4, invocationCount=2, enabled=false)
21142117
static public void testDefaultValueInTriangleArray() throws Throwable {
21152118
Object triangleArray = Array.newInstance(triangle2DClass, genericArraySize);
21162119
for (int i = 0; i < genericArraySize; i++) {
@@ -2173,8 +2176,9 @@ static public void testDefaultValueInTriangleByteCodeMultiArray() throws Throwab
21732176
/*
21742177
* Create an Array Object with assortedValueWithLongAlignment class without initialization
21752178
* Check the fields of each element in arrays. No field should be NULL.
2179+
* TODO:Fix with issue https://github.com/eclipse-openj9/openj9/issues/22642
21762180
*/
2177-
@Test(priority=4, invocationCount=2)
2181+
@Test(priority=4, invocationCount=2, enabled=false)
21782182
static public void testDefaultValueInAssortedValueWithLongAlignmentArray() throws Throwable {
21792183
Object assortedValueWithLongAlignmentArray = Array.newInstance(assortedValueWithLongAlignmentClass, genericArraySize);
21802184
for (int i = 0; i < genericArraySize; i++) {

0 commit comments

Comments
 (0)