-
-
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
Support openj9 to run openjdk hotspot_custom target for jvmti tests #5370
Conversation
LongyuZhang
commented
Jun 5, 2024
•
edited
Loading
edited
- Leveraging hotspot_custom to support openj9 to run openjdk custom target
- Related Issue: Add support for running custom serviceability jvmti test #5357
Test Link: hyc_grinder 41198
However, this test failed with output:
@fengxue-IS would you have any suggestion about this failure? Thanks. |
libJvmtiGetSystemPropertyTest.so should be part of the test image, but it's not on jdk17. I see it's there for jdk21. Seems we need to expand building the native code for jdk17 similarly to what has been done for jdk21. |
|
Tested with JDK21 (hyc_grinder 41212), still failed with the same output:
|
Test with
|
I suspect the failure is due to use of aqa-tests/openjdk/playlist.xml Line 105 in 0f15089
which is defined based on the JDK_IMPL test is running against: Lines 184 to 190 in 0f15089
but for serviceability test suite, aqa-tests/openjdk/playlist.xml Lines 401 to 408 in 0f15089
FYI @LongyuZhang |
I thought I commented on it yesterday. Anyway, instead of using Subtests of |
Updated the PR based on @fengxue-IS and @llxia comments.
|
- Leveraging hotspot_custom to support openj9 to run openjdk custom target Signed-off-by: LongyuZhang <[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.
Thanks @LongyuZhang