-
Notifications
You must be signed in to change notification settings - Fork 738
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
Exclude tests for JDK12+ #4753
Exclude tests for JDK12+ #4753
Conversation
hmm, missed [skip ci]. |
jenkins test sanity plinux jdk11 |
@@ -46,7 +46,7 @@ | |||
<group>functional</group> | |||
</groups> | |||
<subsets> | |||
<subset>9+</subset> | |||
<subset>9|10|11</subset> |
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.
Does '|' delimited actually work (get parsed properly by TKG)? As 9/10 are now retired, I guess you could also just use 11 here if not.
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.
Thanks @smlambert , from a local test, make -f run_configure.mk
and make compile
finished successfully and make _TestFlushReflectionCache_0
didn't run the test in question (was able to reproduce the failure java.lang.NoSuchFieldException: annotations
.
Will remove 9/10
then.
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.
@smlambert PR has been updated, please review again.
Excluding following tests: TestFlushReflectionCache - NoSuchFieldException: annotations; cmdLineTester_jvmtitests_hcr_ - NoSuchFieldException: methodAccessor; TestRefreshGCSpecialClassesCache_BCI_FAST_HCR - UnsupportedOperationException: This feature requires ASM7; TestGCClassWithStaticRetransformInBalanced - UnsupportedOperationException: This feature requires ASM5. Signed-off-by: Jason Feng <fengj@ca.ibm.com>
b5c8117
to
3e6610f
Compare
Exclude tests for
JDK12+
Excluding following tests:
Related to: #4658, #4662, #4663
Reviewer: @llxia
FYI: @pshipton
Signed-off-by: Jason Feng fengj@ca.ibm.com