-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Unset FEATURE_EVENTSOURCE_XPLAT in macOS builds #48244
Conversation
Tagging subscribers to this area: @tommcdon |
Running tests now. It might take a while (I am running gcstress in another terminal). |
This fixed most of the issues. There are three failing tracing tests still. Do these need to be disabled for MacOS?.
|
Interesting. I saw the failures and wondered if they might be dependent on the flag you set, so I rebuilt the tests. However I didn't delete the originally compiled tests, so I think they must have just ended up in the XUnit Wrappers anyway. |
@@ -120,9 +120,9 @@ endif(FEATURE_GDBJIT_LANGID_CS) | |||
if(FEATURE_GDBJIT_SYMTAB) | |||
add_definitions(-DFEATURE_GDBJIT_SYMTAB) | |||
endif(FEATURE_GDBJIT_SYMTAB) | |||
if(CLR_CMAKE_TARGET_UNIX) | |||
if(CLR_CMAKE_TARGET_LINUX) |
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.
I wonder if this should actually be controlled by the cmake FeatureXplatEventSource
property set above. That would keep them consistent.
Fix #48233
@sdmaclea would it be possible for you to run the failing tests on this branch? I don't have an M1 mac at hand to test this.
cc @noahfalk