-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[core] Fix early return in AutoloadLibraryGenerator #16967
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
Conversation
Fixes commit e601bf8 ("[core] Reduce symbol search only to when autoloading is enabled.").
This implements my request from the original PR review that autoloading should only be checked in AutoloadLibraryGenerator but that the MU must provide the symbols it promised. This wasn't working because the early return was broken (fixed in the previous commit).
|
Some numbers, following Vincenzo's methodology in #14287 (comment):
|
|
I think this fix is relatively low-risk, but just to be sure: @aandvalenzuela @smuzaffar can you maybe run this through CMSSW testing? |
cmssw tests are running via cms-sw#213 |
Test Results 17 files 17 suites 4d 2h 15m 16s ⏱️ For more details on these failures, see this check. Results for commit a14c665. ♻️ This comment has been updated with latest results. |
|
@hahnjo , cmssw tests passed cms-sw#213 (comment) |
|
@smuzaffar thanks for testing! |
|
ping @vgvassilev |
vgvassilev
left a comment
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.
Great work, @hahnjo! LGTM!
Fixes commit e601bf8 and then removes the check from
AutoloadLibraryMU(as I had requested in the original PR review).