Skip to content

Commit

Permalink
in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
theresa-m committed Jun 14, 2024
1 parent 54a4158 commit 99ae9ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions test/functional/Valhalla/playlist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@
</test>
<test>
<testCaseName>ValueTypeArrayTestsJIT</testCaseName>
<disables>
<disable>
<comment>https://github.com/eclipse-openj9/openj9/issues/19460</comment>
</disable>
</disables>
<variations>
<variation>-Xjit:count=0</variation>
<variation>-Xjit:count=1,disableAsyncCompilation -Xgcpolicy:optthruput</variation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ static public void testCreateTestPutFieldNullToNullRestrictedField() throws Thro
}

/* Instance field with NullRestricted attribute cannot be set to null. */
@Test(priority=2, invocationCount=2, expectedExceptions = java.lang.NullPointerException.class)
/* https://github.com/eclipse-openj9/openj9/issues/19692 tracks excluded tests */
@Test(priority=2, invocationCount=2, expectedExceptions = java.lang.NullPointerException.class, enabled = false)
static public void testPutFieldNullToNullRestrictedField() throws Throwable {
testPutFieldNullToNullRestrictedFieldClass.newInstance();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1791,7 +1791,8 @@ static public void testAssortedRefWithSingleAlignment() throws Throwable {
* flattened LargeObject val16;
* }
*/
@Test(priority=2)
/* https://github.com/eclipse-openj9/openj9/issues/19692 tracks excluded tests */
@Test(priority=2, enabled = false)
static public void testCreateLargeObjectAndMegaValue() throws Throwable {
String largeFields[] = {
"val1:LValueObject;:NR",
Expand Down Expand Up @@ -1883,7 +1884,8 @@ static public void testCreateLargeObjectAndMegaValue() throws Throwable {
* flattened LargeObject val16;
* }
*/
@Test(priority=3)
/* https://github.com/eclipse-openj9/openj9/issues/19692 tracks excluded tests */
@Test(priority=3, enabled = false)
static public void testCreateLargeObjectAndMegaRef() throws Throwable {
String largeFields[] = {
"val1:LValueObject;:NR",
Expand Down

0 comments on commit 99ae9ae

Please sign in to comment.