-
-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stop running jdk_vector testing on OpenJ9 jdk17 #5365
Conversation
openjdk/playlist.xml
Outdated
</impls> | ||
</test> | ||
<test> | ||
<testCaseName>jdk_vector_j9</testCaseName> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of adding a new jdk_vector_j9
, we can add disable in jdk_vector
<disables>
<disable>
<comment>issue link</comment>
<impl>openj9</impl>
<version>17</version>
</disable>
</disables>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated it.
79f9eeb
to
c77ce10
Compare
<impl>ibm</impl> | ||
<version>17</version> | ||
</disable> | ||
</disables> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, we cannot have 2 impl in one <disable>
. They have to be separated.
<disables>
<disable>
<comment>https://github.com/eclipse-openj9/openj9/issues/19360</comment>
<impl>openj9</impl>
<version>17</version>
</disable>
<disable>
<comment>https://github.com/eclipse-openj9/openj9/issues/19360</comment>
<impl>ibm</impl>
<version>17</version>
</disable>
</disables>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
vector is an incubator and by design there is no JIT support for jdk17 any more, resulting in test timeouts. Issue eclipse-openj9/openj9#19360 Signed-off-by: Peter Shipton <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
vector is an incubator and by design there is no JIT support for jdk17 any more, resulting in test timeouts.
Issue eclipse-openj9/openj9#19360