googletest
googletest copied to clipboard
GoogleTest - Google Testing and Mocking Framework
### Does the feature exist in the most recent commit? No ### Why do we need this feature? We would like to support death tests on z/OS as well ###...
This fixes the following issue https://github.com/google/googletest/issues/4526 by adding z/OS to support death tests.
### Describe the issue I get the following error when attempting to build a CMake project which uses GTest. Any ideas what I'm doing wrong? (Please see the minimal example...
### Describe the issue When running googletest with Address Sanitizer (via Xcode 15.2.0 for ARM) there is a buffer-overflow: ``` ==15724==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x00010c1f9340 at pc 0x000103282fe4 bp...
Greetings, Arch linux ships without a `/usr/src/gmock/CMakeLists.txt`. I downloaded the one here, but had to change the directory in [L17](https://github.com/google/googletest/blob/master/googlemock/CMakeLists.txt#L17). As is: ``` # A directory to find Google Test...
This is for googletest release 1.11.0 Compiling on MacOs Catalina Trying to compile this sample code: ``` #include "gtest/gtest.h" // Demonstrate some basic assertions. TEST(HelloTest, BasicAssertions) { // Expect two...
No warning is generated when using MSVC compiler for deprecated functions (ex : `TYPED_TEST_CASE`). GoogleTest is wrapping the deprecated flag inside `GTEST_INTERNAL_DEPRECATED `which use `__declspec(deprecated)` attribute. This is fine but...
This adds a check for the specific edge case of CMAKE versions less than 3.20 reporting Intel LLVM compilers as Clang. I've verified this using the steps described in #4315...
I moved the version variable out into an external CMake file and I'm including it properly in the sub projects. That way, building both parent as well as child projects...
Now, this is not too big of an issue since all the functions calling this already do this, but better be safe than sorry.