summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #3918 from assafpr:master2mainCopybara-Service2022-08-0114-23/+23
|\ \ \ | | | | | | | | | | | | | | | | PiperOrigin-RevId: 464586117 Change-Id: Icda62f13b962f7408bb5698ae2b627391257d152
| * | | Update gtest.ccassafpr2022-06-271-1/+1
| | | | | | | | | | | | fix a broken link
| * | | Update gmock-matchers.hassafpr2022-06-271-1/+1
| | | | | | | | | | | | branch master changed to main on link
| * | | Update gmock-actions.hassafpr2022-06-271-1/+1
| | | | | | | | | | | | master branch changed to main in links
| * | | Update gmock-spec-builders_test.ccassafpr2022-06-271-1/+1
| | | | | | | | | | | | master branch changed to main in link
| * | | Update gtest-death-test.ccassafpr2022-06-271-1/+1
| | | |
| * | | Update gmock-spec-builders.ccassafpr2022-06-271-1/+1
| | | |
| * | | Update advanced.mdassafpr2022-06-271-5/+5
| | | | | | | | | | | | master branch changed to main branch in links
| * | | documentation, change mater branch to mainassafpr2022-06-221-2/+2
| | | |
| * | | Update faq.mdassafpr2022-06-221-1/+1
| | | |
| * | | Update CONTRIBUTING.mdassafpr2022-06-221-1/+1
| | | |
| * | | documentation, change mater branch to mainassafpr2022-06-221-1/+1
| | | |
| * | | documentation, change mater branch to mainassafpr2022-06-221-1/+1
| | | |
| * | | Update gmock_output_test_golden.txtassafpr2022-06-221-4/+4
| | | |
| * | | change link from master to main in documentationassafpr2022-06-221-1/+1
| | | | | | | | | | | | since master branch was changed to main, the links should be changed accordingly.
* | | | Merge pull request #3951 from matdibu:mainCopybara-Service2022-08-011-1/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | PiperOrigin-RevId: 464546862 Change-Id: I6ee696f4f66a5f76015a36737b5cde5edc91a9bc
| * | | gtest-death-test: add 'noreturn'refs/pull/3951/headMatei Dibu2022-07-201-1/+1
| | | |
* | | | Add support of 18-member structs to gmock UnpackStructImpl.refs/pull/3966/headAbseil Team2022-07-292-2/+17
| | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 463961734 Change-Id: Ib62e320a745c190955f181c1f4f12e4cd407ef22
* | | | Merge pull request #3953 from georgthegreat:patch-1Copybara-Service2022-07-261-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 463379193 Change-Id: Iac9757644b1f2b9a840dc78d82b4e3f44a230573
| * | | | Continuation for #3183refs/pull/3953/headYuriy Chernyshov2022-07-211-2/+2
| |/ / / | | | | | | | | | | | | Some of the #ifdefs were missed in original PR. Should be fixed now.
* | | | Add IsEmpty overload for C-style stringsDino Radakovic2022-07-252-7/+64
|/ / / | | | | | | | | | | | | | | | | | | Fixes #3937 PiperOrigin-RevId: 463180144 Change-Id: I21b528acc4c3f3aba4234642be01fcead7fe7f00
* | | Merge pull request #3940 from anpol:pdb-static-libCopybara-Service2022-07-181-1/+2
|\ \ \ | | | | | | | | | | | | | | | | PiperOrigin-RevId: 461703446 Change-Id: I61773eafa6d6bf6294218a5117fdebf5dd8a7bb1
| * | | cmake: make PDB output directory match that of a static library.refs/pull/3940/headAndrei Polushin2022-07-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PDB files should be created at the same location as their primary artifact, which is either static library or a DLL. On Windows, an artifact location is controlled by: * RUNTIME_OUTPUT_DIRECTORY is a directory of a DLL artifact. * ARCHIVE_OUTPUT_DIRECTORY is a directory of a LIB artifact. A PDB file location is controlled: * PDB_OUTPUT_DIRECTORY should match a directory of a DLL artifact. * COMPILE_PDB_OUTPUT_DIRECTORY should match a directory of a LIB artifact.
* | | | Merge pull request #3946 from anpol:export-tlvhbaseCopybara-Service2022-07-181-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 461701938 Change-Id: I92601aeef9f0bb18a6d1c8b08e497d93dde4012a
| * | | | export ThreadLocalValueHolderBase which is required by exported APIs.refs/pull/3946/headAndrei Polushin2022-07-141-1/+1
| |/ / / | | | | | | | | | | | | fixes #3944
* | | | Merge pull request #3939 from anpol:python-find-strategyCopybara-Service2022-07-181-0/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 461699564 Change-Id: Id7043073f106f57433a99fea0e8e4ab015bf896d
| * | | | cmake: find python in order specified by PATH environment variable.refs/pull/3939/headAndrei Polushin2022-07-121-0/+6
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CMake policy CMP0094 controls a lookup strategy used to find a Python executable: * CMP0094=OLD selects a Python executable with a higher version. * CMP0094=NEW selects a Python executable found earlier in PATH. NEW behavior is critical in presence of a Python virtual environment established and activated, i.e. added to the PATH variable. In case GoogleTest is embedded into a larger project, the result of `find_package(Python)` affects the whole build, not only GoogleTest component itself.
* | | | Merge pull request #3927 from yutotnh:fix-typoCopybara-Service2022-07-186-11/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 461699509 Change-Id: I9bab4474c5f52d4d66691dfb96a4d20f89fbcfeb
| * | | | fix: some typos in sourcerefs/pull/3927/headyutotnh2022-07-012-4/+4
| | | | |
| * | | | fix: typo in test nameyutotnh2022-07-011-1/+1
| | | | |
| * | | | fix: some typos in commentyutotnh2022-07-014-6/+6
| | | | |
* | | | | Merge pull request #3921 from Krzmbrzl:patch-1Copybara-Service2022-07-181-0/+4
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | PiperOrigin-RevId: 461660066 Change-Id: Ie23e046caf24d350c91e4ee3c4baf512780c6984
| * | | | Set cmake policy CMP0069refs/pull/3921/headRobert Adam2022-07-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | This ensures that LTO works as expected whenever the main project has it enabled.
* | | | | Merge pull request #3928 from venik:venik-clean-upCopybara-Service2022-07-126-9/+8
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 460455562 Change-Id: I29efc09887651d8734586703fe0691482ba4c981
| * | | | | cleanup from unique_ptr branchrefs/pull/3928/headAlexander Nikforov2022-07-016-10/+8
| | | | | |
* | | | | | Merge pull request #3787 from codeinred:fix-quickstartCopybara-Service2022-07-111-2/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 460272863 Change-Id: I139e31faca4dab6f697e0cd1b3491f791fda5f8a
| * | | | | | Fix quickstart-cmake documentationrefs/pull/3787/headAlecto Irene Perez2022-03-271-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Alecto Irene Perez <perez.cs@pm.me>
* | | | | | | Add envvar BAZEL_CXXOPTS=-std=c++14 to the GitHub Actions CIDerek Mauro2022-07-111-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 460242683 Change-Id: I182a2e082d3a7e38fd3686e9e7af200ba0f954e0
* | | | | | | Merge pull request #3868 from eidosmontreal:fix_undefined_symbol_kMaxRangeCopybara-Service2022-07-111-0/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 460222898 Change-Id: I652b8058aa98b56d849c5ab1399f75e531dcc959
| * | | | | | | Fix for undefined symbol: testing::internal::Random::kMaxRangerefs/pull/3868/headGaspard Petit2022-05-311-0/+2
| | | | | | | |
* | | | | | | | Merge pull request #3844 from akohlmey:intel-llvm-utf8-fixCopybara-Service2022-07-111-1/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 460222266 Change-Id: I2fbeac0b333ca16639f172ca1f23794ea9ddc2ad
| * | | | | | | | set -utf-8 flag only for real MSVC compilers. E.g. not Intel's icx.exerefs/pull/3844/headAxel Kohlmeyer2022-05-181-1/+3
| | | | | | | | |
* | | | | | | | | CMake: raise the default C++ standard to cxx_std_14Derek Mauro2022-07-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 459761499 Change-Id: Ifb4b8b9f2dc598f3f4afc66a9efc403e001e0262
* | | | | | | | | Enable heterogeneous lookup for RegisteredTestsMap.Chris Kennelly2022-07-071-1/+2
| |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 459529190 Change-Id: I6b29693000023b3562990742f27a98cc279b6452
* | | | | | | | Remove the Bazel provided default cxxopt -std=c++0x and replace itDerek Mauro2022-07-011-0/+1
| |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with -std=c++14 when testing with GCC 5. PiperOrigin-RevId: 458502826 Change-Id: I83637a222b5c0a54e55d93ce7fdbc878af27b250
* | | | | | | Remove support for C++11Derek Mauro2022-06-305-11/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | v1.12.x is the last branch to support C++11 Future releases will require at least C++14 PiperOrigin-RevId: 458250106 Change-Id: Ibee2248649ff3c13daaa179135887848bf730f3f
* | | | | | | Update version number in CMakeLists.txtDerek Mauro2022-06-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Note that this is 1.12.1 as there will be a patch release to fix this PiperOrigin-RevId: 458216994 Change-Id: Ibca52a8db22ed06cb1a1adc4832be67fce69459a
* | | | | | | Add support of 17-member structs to gmock UnpackStructImpl.Abseil Team2022-06-291-0/+5
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 458018249 Change-Id: I7df8f75ef5b5a6478e7301f959c221810ff9f0b3
* | | | | | Mark internal-only function as having internal linkage.Abseil Team2022-06-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 457550818 Change-Id: I9046801b64ce4581d742d650451332fd56489632
* | | | | | Merge pull request #3912 from jarkenau:mainCopybara-Service2022-06-271-2/+2
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | PiperOrigin-RevId: 457479731 Change-Id: Ia883186c01886196f23c3957381566eab3d76c5f