| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | Fix formatting of C++ files | Tom Hughes | 2023-01-24 | 15 | -85/+84 |
|
|
* | | Fix formatting of Markdown files | Tom Hughes | 2023-01-24 | 2 | -15/+39 |
|
|
* | | Remove FloatingPoint::Max() in favor of std::numeric_limits::max() | Derek Mauro | 2023-01-24 | 2 | -15/+3 |
|
|
* | | Mention using MockFunction as a way to mock free functions. | Abseil Team | 2023-01-18 | 1 | -0/+4 |
|
|
* | | Replace deprecated python calls | Tom Hughes | 2023-01-17 | 15 | -186/+272 |
|
|
* | | Announce that GitHub actions are not GoogleTest's canonical CI | Dino Radakovic | 2023-01-17 | 1 | -0/+7 |
|
|
* | | Fix -Wimplicit-int-float-conversion warning | Tom Hughes | 2023-01-17 | 1 | -2/+8 |
|
|
* | | Update documentation for v1.13.0 | Derek Mauro | 2023-01-17 | 2 | -6/+5 |
|
|
* | | Bump version to 1.13.0 in preparation for releasev1.13.0-prev1.13.0v1.13.x | Derek Mauro | 2023-01-17 | 1 | -1/+1 |
|
|
* | | gmock_output_test: normalize golden file output to unix line endings | Abseil Team | 2023-01-17 | 1 | -0/+3 |
|
|
* | | Fix -Wshadow warnings | Tom Hughes | 2023-01-12 | 1 | -2/+2 |
|
|
* | | Add an explicit #error that C++ versions less than C++14 are not supported | Derek Mauro | 2023-01-12 | 1 | -0/+13 |
|
|
* | | Update GoogleTest dependencies | Derek Mauro | 2023-01-11 | 1 | -24/+20 |
|
|
* | | Fix GTEST_OS_ESP8266 check | Tom Hughes | 2023-01-05 | 1 | -1/+1 |
|
|
* | | IWYU: Add missing std includes | Tom Hughes | 2023-01-05 | 22 | -0/+38 |
|
|
* | | Workaround for GCC12 bug illustrated by https://godbolt.org/z/Pe5aE59xG | Derek Mauro | 2023-01-04 | 1 | -1/+2 |
|/ |
|
* | Fix _MSC_VER check | Tom Hughes | 2023-01-04 | 1 | -1/+1 |
|
|
* | Use a more recent commit of googletest that uses OS constraints from | Abseil Team | 2022-12-22 | 1 | -7/+6 |
|
|
* | Fix a typo in the documentation for "Using Predicates as Matchers". | Abseil Team | 2022-12-20 | 1 | -1/+1 |
|
|
* | Comment that q0_ in primer should remain empty | Dino Radakovic | 2022-12-20 | 1 | -0/+1 |
|
|
* | Specify a name for a `Property` in a code example. | Abseil Team | 2022-12-19 | 1 | -1/+1 |
|
|
* | Shut up a Clang warning. | Abseil Team | 2022-12-15 | 1 | -1/+6 |
|
|
* | Fix a typo in the gMock sample code for Defining a Custom Matcher Class. | Abseil Team | 2022-12-14 | 1 | -1/+1 |
|
|
* | Convert feature requests to a form | Derek Mauro | 2022-12-12 | 2 | -24/+33 |
|
|
* | Refactor matrix verification into VerifyMatchMatrix.refs/pull/4082/head | Abseil Team | 2022-12-12 | 2 | -17/+17 |
|
|
* | Introduces a new porting flag (GTEST_HAS_FILE_SYSTEM) to indicate whether a p... | Abseil Team | 2022-12-12 | 5 | -40/+115 |
|
|
* | Fall back to the system clock when building with newlib on a system without a... | Tom Hughes | 2022-12-08 | 1 | -3/+10 |
|
|
* | Migrate GoogleTest to a bug report template and add a link to the discussion | Derek Mauro | 2022-12-07 | 3 | -43/+57 |
|
|
* | Remove the unused class TestNameIs | Derek Mauro | 2022-12-06 | 1 | -31/+0 |
|
|
* | Make SizeIsMatcher::Impl conform to the contract of MatcherDescriberInterface. | Abseil Team | 2022-11-30 | 2 | -4/+4 |
|
|
* | Disables `-Wunused-member-function` and `-Wused-but-marked-unused` that trigg... | Abseil Team | 2022-11-29 | 5 | -3/+59 |
|
|
* | This commit fixes a minor verb conjugation error in gmock_cook_book.md. | Abseil Team | 2022-11-23 | 1 | -1/+1 |
|
|
* | Merge pull request #4066 from zloylos:doc/make_uniq | Copybara-Service | 2022-11-21 | 2 | -5/+5 |
|\ |
|
| * | Change MakeUnique -> std::make_unique in docsrefs/pull/4066/head | Denis Hananein | 2022-11-20 | 2 | -5/+5 |
|/ |
|
* | When printing floating-point numbers, print full precision by default. | Abseil Team | 2022-11-16 | 2 | -1/+84 |
|
|
* | Remove incorrect usage of GTEST_ATTRIBUTE_UNUSED_ on classes. | Abseil Team | 2022-11-15 | 4 | -15/+7 |
|
|
* | Merge pull request #4058 from zloylos:support-kitty-term | Copybara-Service | 2022-11-14 | 3 | -9/+14 |
|\ |
|
| * | Support kitty TERMrefs/pull/4058/head | Denis Hananein | 2022-11-10 | 3 | -0/+5 |
|
|
* | | Merge pull request #4060 from RerEngineer:main | Copybara-Service | 2022-11-14 | 1 | -3/+3 |
|\ \ |
|
| * | | (no commit message)refs/pull/4060/head | RerEngineer | 2022-11-12 | 0 | -0/+0 |
|
|
| * | | fixing gcc.gnu domain redirection | RerEngineer | 2022-11-12 | 1 | -1/+1 |
|/ / |
|
* | | Defined a testing::SrcDir() function that returns the name of a directory | Abseil Team | 2022-11-11 | 3 | -11/+140 |
|
|
* | | Merge pull request #4039 from zloylos:fix-return-fail-at-4038 | Copybara-Service | 2022-11-10 | 1 | -3/+3 |
|\ \ |
|
| * | | Add return for GTEST_FAIL_ATrefs/pull/4039/head | Denis Hananein | 2022-10-15 | 1 | -2/+2 |
|
|
* | | | Remove incorrect GTEST_ATTRIBUTE_UNUSED_ from InSequence class. | Abseil Team | 2022-11-08 | 1 | -1/+1 |
|
|
* | | | RecordProperty serializes ints and 64-bit ints, including size_ts | Abseil Team | 2022-11-07 | 3 | -8/+9 |
|
|
* | | | Fix typo in documentation of ConvertGenerator() | Abseil Team | 2022-11-05 | 1 | -1/+1 |
|
|
* | | | Add documentation for `--gunit_recreate_environments_when_repeating`. | Abseil Team | 2022-11-03 | 1 | -2/+6 |
|
|
* | | | Merge pull request #4041 from zloylos:allow-naming-expectations | Copybara-Service | 2022-10-25 | 3 | -11/+48 |
|\ \ \ |
|
| * | | | Fix format without expectation namerefs/pull/4041/head | Denis Hananein | 2022-10-21 | 1 | -2/+2 |
|
|