-
Notifications
You must be signed in to change notification settings - Fork 196
[Tests] Remove all hard-coded macOS targets in explicit module tests #1690
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
[Tests] Remove all hard-coded macOS targets in explicit module tests #1690
Conversation
@swift-ci please test |
Holding on. Bots are actually not green for Linux as the test failures are hidden. |
@swift-ci please test |
@@ -1,4 +1,4 @@ | |||
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 110000 | |||
#if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1050 |
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.
#if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1050 | |
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__-0 < 1050 |
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 am actually intended to have this to be false on Linux/Windows.
17f0319
to
c3b367e
Compare
@swift-ci please test |
c3b367e
to
bb03664
Compare
Remove all the hard coded macOS tests for module scanning and planning. Feed stdlib and shims into the tests instead to support all targets for those tests.
bb03664
to
8bc8927
Compare
@swift-ci please test |
@swift-ci please test windows platform |
Remove all the hard coded macOS tests for module scanning and planning. Feed stdlib and shims into the tests instead to support all targets for those tests.