-
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
Fix crossgenning of sparse COM interface types on non-Windows and add test #40404
Fix crossgenning of sparse COM interface types on non-Windows and add test #40404
Conversation
… vtable gap members.
…nto sparse-vtable-crossgen-test
…the COM test suite.
Hello @jkoritzinsky! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
The perf wasm leg is not supposed to run on PR (and was just moved to outerloop). Since none of the code in this PR affects anything in the perf wasm leg, I'm going to merge this once the Mono test legs that are currently running are green. |
This fixes errors from crossgenning sparse vtable types on non-Windows platforms. Running crossgen on crossgen2 causes crossgen to try to readytorun some sparse vtables in Microsoft.DiaSymReader.dll. This change fixes crossgen to ignore these members and not error out on Linux (same behavior as Windows).
This PR also adds a test that tests sparse vtables on Windows and tests the sparse vtable crossgenning on all platforms.