-
Notifications
You must be signed in to change notification settings - Fork 902
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
Fixed tests warning: "TYPED_TEST_CASE is deprecated, please use TYPED_TEST_SUITE" #9574
Conversation
# Conflicts: # cpp/tests/reductions/scan_tests.cpp
Codecov Report
@@ Coverage Diff @@
## branch-21.12 #9574 +/- ##
================================================
- Coverage 10.79% 10.67% -0.12%
================================================
Files 116 117 +1
Lines 18869 19471 +602
================================================
+ Hits 2036 2078 +42
- Misses 16833 17393 +560
Continue to review full report at Codecov.
|
@gpucibot merge |
The recent PR #9574 missed updating the docs. This PR fixes that. Authors: - Conor Hoekstra (https://github.com/codereport) Approvers: - Nghia Truong (https://github.com/ttnghia) - MithunR (https://github.com/mythrocks) URL: #9654
Thanks for this change, @ttnghia. I've been correcting my tests only when I run into this during peripheral changes. |
This PR does a simple refactoring in the unit tests, replacing the calls to macro
TYPED_TEST_CASE
by calling toTYPED_TEST_SUITE
macro instead.This is to fix the warning: "TYPED_TEST_CASE is deprecated, please use TYPED_TEST_SUITE".
Due to high conflict with other PRs, this PR should be merged last, after other C++ PRs, before code freeze.