-
Notifications
You must be signed in to change notification settings - Fork 730
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
JVMTI framepop02.java#id1 checks outside a virtual thread's scope #16346
Comments
eclipse-openj9/openj9#16212 was fixed by 1. eclipse-openj9/openj9#16290 2. eclipse-openj9/openj9#16293 eclipse-openj9/openj9#16275 is a duplicate of eclipse-openj9/openj9#16212. eclipse-openj9/openj9#16229 was fixed by eclipse-openj9/openj9#16323. FramePop/framepop02 fails with another issue, which is reported in eclipse-openj9/openj9#16346. Signed-off-by: Babneet Singh <[email protected]>
eclipse-openj9/openj9#16212 was fixed by 1. eclipse-openj9/openj9#16290; and 2. eclipse-openj9/openj9#16293. eclipse-openj9/openj9#16275 is a duplicate of eclipse-openj9/openj9#16212. eclipse-openj9/openj9#16229 was fixed by eclipse-openj9/openj9#16323. FramePop/framepop02 fails with another issue, which is reported in eclipse-openj9/openj9#16346. Signed-off-by: Babneet Singh <[email protected]>
eclipse-openj9/openj9#16212 was fixed by 1. eclipse-openj9/openj9#16290; and 2. eclipse-openj9/openj9#16293. eclipse-openj9/openj9#16275 is a duplicate of eclipse-openj9/openj9#16212. eclipse-openj9/openj9#16229 was fixed by eclipse-openj9/openj9#16323. FramePop/framepop02 fails with another issue, which is reported in eclipse-openj9/openj9#16346. Signed-off-by: Babneet Singh <[email protected]> Signed-off-by: Babneet Singh <[email protected]>
A similar failure was observed in the following test for enabling FramePop for method. Test CMD
Test Output
|
@dipak-bagadiya Can you investigate this issue? The first step will be to verify if #16654 fixes this issue. fyi @thallium @fengxue-IS |
@dipak-bagadiya #16689 has higher priority. So, this task should be pursued after #16689. |
The framepop02 failure will fix by #17125. |
#17490 has been opened for the |
eclipse-openj9/openj9#17125 fixes framepop02.java#id1, and it was embedded in eclipse-openj9/openj9#17514 and merged. Now, the MethodExitTest failure is being tracked through eclipse-openj9/openj9#17514. Closes eclipse-openj9/openj9#16346 Signed-off-by: Babneet Singh <[email protected]>
eclipse-openj9/openj9#17125 fixes framepop02.java#id1, and it was embedded in eclipse-openj9/openj9#17514 and merged. Now, the MethodExitTest failure is being tracked through eclipse-openj9/openj9#17490. Closes eclipse-openj9/openj9#16346 Signed-off-by: Babneet Singh <[email protected]>
Closing. #17125 fixes this test failure. It was embedded in #17514 and merged. adoptium/aqa-tests#4687 has been opened to re-enable |
eclipse-openj9/openj9#17125 fixes framepop02.java#id1, and it was embedded in eclipse-openj9/openj9#17514 and merged. Now, the MethodExitTest failure is being tracked through eclipse-openj9/openj9#17490. Closes eclipse-openj9/openj9#16346 Signed-off-by: Babneet Singh <[email protected]>
Issue
In
framepop02/framepop02.java#id1
, the JVMTI frame pop event expects the thread to be a virtual thread after the invocation ofVirtualThread.unmount
.This is not true since
J9VMThread->threadObject
is changed to the carrier thread inVirtualThread.unmount
.Virtual thread's scope is between the
mount
andunmount
phases. The test should enforce its checks within a virtual thread's scope.Currently, this test is incompatible with OpenJ9 since it enforces its checks outside a virtual thread's scope.
Test CMD
Test Output
The text was updated successfully, but these errors were encountered: