Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix an assert failure in GCStress testing
When GCStress uses redirection, it pushes a RedirectedThreadFrame (Windows) or ResumableFrame(Unix) on the stack. The stack walker, when checking for consistency of frame chain makes a special case for this redirection when running under GCStress -- but compares only against `RedirectedThreadFrame'. This caused the StackWalker to think that certain invoke-s were not redirected, resulting in the failures in some GCStress tests on Linux. This change fixes the problem. Fixes #2848
- Loading branch information