summaryrefslogtreecommitdiffstats
path: root/src/googletest (follow)
Commit message (Collapse)AuthorAgeFilesLines
* googletest: pick up change to silence error=maybe-uninitialized warningKefu Chai2021-01-081-0/+0
| | | | | | | | | | | | | | | | | | | | | to include the fix of https://github.com/google/googletest/pull/3024 otherwise GCC-11 fails to compile the tests with following warning: In file included from ../src/googletest/googletest/src/gtest-all.cc:42: ../src/googletest/googletest/src/gtest-death-test.cc: In function ‘bool testing::internal::StackGrowsDown()’: ../src/googletest/googletest/src/gtest-death-test.cc:1301:24: error: ‘dummy’ may be used uninitialized [-Werror=maybe-uninitialized] 1301 | StackLowerThanAddress(&dummy, &result); | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~ ../src/googletest/googletest/src/gtest-death-test.cc:1290:13: note: by argument 1 of type ‘const void*’ to ‘void testing::internal::StackLowerThanAddress(const void*, bool*)’ declared here 1290 | static void StackLowerThanAddress(const void* ptr, bool* result) { | ^~~~~~~~~~~~~~~~~~~~~ ../src/googletest/googletest/src/gtest-death-test.cc:1299:7: note: ‘dummy’ declared here 1299 | int dummy; | ^~~~~ cc1plus: all warnings being treated as errors Signed-off-by: Kefu Chai <kchai@redhat.com>
* googletest: pick up change to print GTEST_SKIP messagesKefu Chai2020-01-221-0/+0
| | | | | | | to include the fix for https://github.com/google/googletest/pull/2517 Signed-off-by: Kefu Chai <kchai@redhat.com>
* googletest: pick up change to suppress CMP0048 warningKefu Chai2019-08-041-0/+0
| | | | | | newer cmake complains about googletest should have set CMP0048 Signed-off-by: Kefu Chai <kchai@redhat.com>
* googletest: pick up GTEST_SKIP() changesKefu Chai2019-05-021-0/+0
| | | | | | so we can use it to disable test at runtime Signed-off-by: Kefu Chai <kchai@redhat.com>
* googletest: avoid installing any pieces of itJosh Durgin2016-07-141-0/+0
| | | | | | This makes rpmbuild happy. Signed-off-by: Josh Durgin <jdurgin@redhat.com>
* googletest: use ceph branchJosh Durgin2016-07-131-0/+0
| | | | | | | | Added the same functionality as the previous gtest/gmock branches - .gitignore and not installing shared libs that we only want to statically link to test programs. Signed-off-by: Josh Durgin <jdurgin@redhat.com>
* Replace gmock/gtest with googletestAnirudha Bose2016-07-131-0/+0
Google Mock has been absorbed into the Google Test project, and is now available under the googletest repository. Signed-off-by: Anirudha Bose <ani07nov@gmail.com>