-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[RISC-V] Fix ProcessWaitingTests.WaitChain and ProcessWaitingTests.Wa… #96187
Conversation
Tagging subscribers to this area: @dotnet/area-system-diagnostics-process Issue Details…itAsyncChain Since WaitChain and WaitAsyncChain test cases perform quadruple nested chain of corerun invocation, and rely on execution time, they are pretty sensitive to corerun startup time. On RISC-V we experience test failures due to the fact that WaitInMS timeout is too aggressive for Checked and Debug builds in the case of R2R absence. It seems that without System.Private.CoreLib R2R artifacts CoreCLR need to jit 2x-3x more functions (Checked build). We think it's reasonable to expect tests working even in case of lack of R2R. Also this assumption would make sense for other platforms, not only RISC-V. This change fixes mentioned test cases by bumping waiting timeouts. Part of #84834
|
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.
Thank you for sharing the findings of your detailed investigation.
I am supportive of the direction, but I think that the fix can be improved, PTAL at my comment.
Thanks!
src/libraries/System.Diagnostics.Process/tests/ProcessWaitingTests.cs
Outdated
Show resolved
Hide resolved
0514fa6
to
f9e9873
Compare
…itAsyncChain Since WaitChain and WaitAsyncChain test cases perform quadruple nested chain of corerun invocation, and rely on execution time, they are pretty sensitive to corerun startup time. On RISC-V we experience test failures due to the fact that WaitInMS timeout is too aggressive for Checked and Debug builds in the case of R2R absence. It seems that without System.Private.CoreLib R2R artifacts CoreCLR need to jit 2x-3x more functions (Checked build). We think it's reasonable to expect tests working even in case of lack of R2R. This change fixes mentioned test cases by bumping waiting timeouts for RISC-V architecture.
f9e9873
to
9332c19
Compare
Updated PR description and poked CI again. |
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. Please do not force-push.
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, Thank you @yurai007 !
…Tests.WaitAsyncChain (dotnet#96187)" This reverts commit 476a455.
…itAsyncChain
Since WaitChain and WaitAsyncChain test cases perform quadruple nested chain of corerun invocation, and rely on execution time, they are pretty sensitive to corerun startup time. On RISC-V we experience test failures due to the fact that WaitInMS timeout is too aggressive for Checked and Debug builds in the case of R2R absence. It seems that without System.Private.CoreLib R2R artifacts CoreCLR need to jit 2x-3x more functions (Checked build). We think it's reasonable to expect tests working even in case of lack of R2R. This change fixes mentioned test cases by bumping waiting timeouts for RISC-V architecture.
Part of #84834
cc @wscho77 @HJLeee @clamp03 @JongHeonChoi @t-mustafin @gbalykov @ashaurtaev @sirntar @tomeksowi @Bajtazar @viewizard