aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added Copyrightmisterg2017-08-104-13/+129
|
* Initial Revision, review 164634031misterg2017-08-104-29/+3
|
* WIPmisterg2017-08-092-10/+32
|
* Added googlemock testsmisterg2017-08-091-4/+0
|
* Added googlemock testsmisterg2017-08-091-0/+29
|
* WIPmisterg2017-08-092-98/+12
|
* WIP, win testingmisterg2017-08-081-4/+7
|
* WIP, win testingmisterg2017-08-081-3/+3
|
* WIP, windows testingmisterg2017-08-081-2/+2
|
* WIP, windows testingmisterg2017-08-081-2/+2
|
* WIP, windows testingmisterg2017-08-081-3/+9
|
* WIPmisterg2017-08-082-142/+193
|
* Samples changes upstreamingmisterg2017-08-072-2/+2
|
* Samples changes upstreamingmisterg2017-08-079-18/+15
|
* WIPmisterg2017-08-021-36/+20
|
* WIPmisterg2017-08-021-23/+15
|
* WIPmisterg2017-08-012-8/+13
|
* WIPmisterg2017-08-0113-28/+326
|
* Merge pull request #1167 from krizalys/fix-typoGennadiy Civil2017-07-311-1/+1
|\ | | | | Fixed typo
| * Fixed typoChristophe Vidal2017-07-311-1/+1
| |
* | Merge pull request #1165 from aninf-wo/hethi/fix-doc-linksGennadiy Civil2017-07-313-4/+4
|\ \ | |/ |/| fix links to Google C++ Style Guide
| * fix links to Google C++ Style GuideHerbert Thielen2017-07-303-4/+4
|/
* Merge pull request #1137 from coryan/masterGennadiy Civil2017-07-264-29/+41
|\ | | | | Fix table formatting.
| * More tables that did not render correctly.Carlos O'Ryan2017-07-014-1/+9
| |
| * Remove silly claim that C++ lacks lambdas.Carlos O'Ryan2017-07-014-12/+12
| | | | | | | | | | | | The document itself uses lambdas later, all the scaffolding to work around lack of lambdas should be considered for removal, but that is much larger an effort than I can commit to.
| * Same fixes for "current" version.Carlos O'Ryan2017-07-011-4/+5
| |
| * Fix typos too s/destoyed/destroyed/Carlos O'Ryan2017-07-013-6/+6
| |
| * Fix table formatting.Carlos O'Ryan2017-07-013-6/+9
| | | | | | | | The markdown was not working for a small table, fixed.
* | Merge pull request #1107 from lipk/patch-1Gennadiy Civil2017-07-261-1/+1
|\ \ | | | | | | Minor grammar fix in docs.
| * | Remove unnecessary 'the'.lipk2017-05-301-1/+1
| | |
* | | Merge pull request #1158 from junr03/fix-linkGennadiy Civil2017-07-261-1/+1
|\ \ \ | | | | | | | | docs: fix broken link
| * | | docs: fix broken linkJose Nino2017-07-261-1/+1
|/ / /
* | | Merge pull request #1143 from nyibbang/patch-1Gennadiy Civil2017-07-261-1/+1
|\ \ \ | | | | | | | | Fixes a typo in FAQ.md
| * | | Fixes a typo in FAQ.mdVincent Palancher2017-07-051-1/+1
| | |/ | |/|
* | | Merge pull request #1126 from junr03/fix-broken-linkGennadiy Civil2017-07-261-1/+1
|\ \ \ | |/ / |/| | docs: fix broken link from dummies guide to cook book
| * | docs: fix broken link from dummies guide to cook bookJose Nino2017-06-191-1/+1
| | |
* | | Merge pull request #1081 from krytarowski/netbsd-1Billy Donahue2017-06-232-2/+5
|\ \ \ | | | | | | | | Add NetBSD support
| * | | Add NetBSD supportKamil Rytarowski2017-05-062-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | NetBSD is a modern UNIX-like Operating System. Enable GTEST_HAS_PTHREAD and GTEST_HAS_DEATH_TEST on NetBSD.
* | | | Merge pull request #1129 from Chris-Sharpe/masterBilly Donahue2017-06-231-1/+1
|\ \ \ \ | |_|/ / |/| | | Colouring in help text
| * | | Colouring in help textChris-Sharpe2017-06-211-1/+1
|/ / /
* | | Create gtest-internal.hBilly Donahue2017-06-111-1/+1
| | |
* | | Merge pull request #1113 from jorgehb/patch-1Billy Donahue2017-06-111-1/+1
|\ \ \ | |_|/ |/| | Fixing float comparison broken link
| * | Fixing float comparison broken linkjorgehb2017-06-081-1/+1
|/ / | | | | Updating the link with a valid one. The old one was considered obsolete by the publisher.
* | Merge pull request #1091 from nico/wmicroBilly Donahue2017-05-231-38/+51
|\ \ | | | | | | Fix -Wmicrosoft-cast warnings when using gtest with clang on Windows.
| * | Fix -Wmicrosoft-cast warnings when using gtest with clang on Windows.Nico Weber2017-05-151-38/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This upstreams a Google-internal change. Original CL description: The C++ standard says that function pointers are not implicitly convertible to object pointers. Visual Studio disregards that and allows implicit conversion between function pointers and object points, and enough code relies on this that clang follows suit in Microsoft-compatibility mode. However, clang emits a -Wmicrosoft-cast warning when such a conversion is done: E:\b\c\b\win_clang\src\sandbox\win\src\sync_dispatcher.cc(42,7): warning: implicit conversion between pointer-to-function and pointer-to-object is a Microsoft extension [-Wmicrosoft-cast] This change fixes this warning in gtest, while hopefully not changing any behavior. The change does two things: 1. It replaces the if in DefaultPrintTo with SFINAE 2. In C++11 mode, it uses enable_if<is_function<>> instead of ImplicitlyConvertible<T*, const void*> to check if the explicit cast is needed. With this change, functions will use the branch with the reintpret_casts with Visual Studio and clang/win, and clang no longer needs to warn that it implicitly converts a function pointer to a void pointer.
* | | Merge pull request #1096 from gennadiycivil/add-ability-for-custom-temdir-1093Billy Donahue2017-05-182-1/+7
|\ \ \ | | | | | | | | Changes add ability to overwrite TempDir(), issue https://github.com/…
| * | | Changes add ability to overwrite TempDir(), issue ↵Gennadiy Civil2017-05-182-1/+7
|/ / / | | | | | | | | | https://github.com/google/googletest/issues/1093
* | | Merge pull request #1089 from nico/stdstringBilly Donahue2017-05-1627-490/+488
|\ \ \ | | | | | | | | Use std::string and ::string explicitly in gtest and gmock code.
| * | | Use std::string and ::string explicitly in gtest and gmock code.Nico Weber2017-05-1527-490/+488
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | This merges a Google-internal change (117235625). Original CL description: This CL was created manually in about an hour with sed, a Python script to find all the places unqualified 'string' was mentioned, and some help from Emacs to add the "std::" qualifications, plus a few manual tweaks.
* | | Merge pull request #1090 from nico/typoBilly Donahue2017-05-151-1/+1
|\ \ \ | | | | | | | | Fixing typo in documentation.