-
Notifications
You must be signed in to change notification settings - Fork 471
build: migrate to standard mechanism for testing #518
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
@swift-ci please test |
@ktopley-apple how would you prefer to handle this? Fix the warning or silence these warnings (since it seems that dispatch currently does quite a bit of tweaking to the warning flags):
|
I would fix the warning with a cast. |
ffbceeb
to
573871e
Compare
@swift-ci please test |
Use `CTest` module rather than the custom `ENABLE_TESTING` option. The inclusion of `CTest` will default `BUILD_TESTING` to true, which preserves the existing behaviour.
573871e
to
b1fc1ad
Compare
@swift-ci please test |
Preserve the const-ness of the string constants as identified by the newer compiler.
b1fc1ad
to
46862df
Compare
@swift-ci please test |
@ktopley-apple - okay to merge? |
build: migrate to standard mechanism for testing Signed-off-by: Rokhini Prabhu <[email protected]>
Use
CTest
module rather than the customENABLE_TESTING
option. Theinclusion of
CTest
will defaultBUILD_TESTING
to true, whichpreserves the existing behaviour.