aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Tests simplified and names corrected (POD->scalar)Piotr Nycz2019-10-241-49/+18
| | | | Issue 2527
* Added more tests to verify: ReturnRef not accept temporaryPiotr Nycz2019-10-231-15/+57
| | | | Issue 2471
* Added tests verifying that temporaries are accepted by ReturnRefPiotr Nycz2019-10-221-0/+24
| | | | Issue no 2527
* Prevent using ReturnRef on reference to temporaryPiotr Nycz2019-10-221-0/+4
| | | | Fixed issue: 2471
* Googletest exportmisterg2019-10-183-133/+2
| | | | | | Added IsNan matcher PiperOrigin-RevId: 275473218
* Googletest exportAbseil Team2019-10-182-4/+32
| | | | | | | | Addressing https://github.com/google/googletest/issues/2502 Add MOCK_METHOD support for returning function pointers. PiperOrigin-RevId: 275323671
* Googletest exportAbseil Team2019-10-173-2/+133
| | | | | | Added IsNan matcher PiperOrigin-RevId: 275278634
* Merge pull request #2507 from roblub:masterGennadiy Civil2019-10-177-68/+68
|\ | | | | | | PiperOrigin-RevId: 275076905
| * Add more override keywordsRobert Luberda2019-10-117-68/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Mark more functions with "override" keyword, just like it was done in commit 2460f97152c. This should prevent compiler from complaining while compiling both user code, and the googletest code itself with the -Wsuggest-override option turned on; with the exception of: * calls to new MOCK_METHOD() in test/gmock-function-mocker_test.cc * calls to old MOCK_METHODx()/MOCK_CONST_METHODx() in other unit test files. Closes #2493
* | Merge pull request #2421 from kuzkry:cleanup-for-regexAndy Soffer2019-10-163-5/+4
|\ \ | | | | | | | | | PiperOrigin-RevId: 275058934
| * | mention the existing support for wide strings in string matchersKrystian Kuzniarek2019-09-231-2/+2
| | |
| * | change usingsKrystian Kuzniarek2019-09-122-2/+1
| | |
* | | Googletest exportAbseil Team2019-10-163-18/+4
| | | | | | | | | | | | | | | | | | | | | Remove a test case rendered obsolete by disallowing empty argument for INSTANTIATE_TEST_SUITE_P. Remove the code that it was testing. PiperOrigin-RevId: 275040108
* | | Merge pull request #2510 from ciband:chore/update_pio_versionAndy Soffer2019-10-161-1/+1
|\ \ \ | |_|/ |/| | | | | PiperOrigin-RevId: 274865328
| * | chore: update versionChris Johnson2019-10-101-1/+1
| | | | | | | | | Updated version from 1.8.1 to 1.10.0.
| * | Merge pull request #3 from google/masterChris Johnson2019-08-27220-24053/+12882
| |\ \ | | | | | | | | Update master
| * \ \ Merge pull request #2 from google/masterChris Johnson2018-12-1427-41/+295
| |\ \ \ | | | | | | | | | | merge upstream/master into master
* | \ \ \ Merge pull request #2498 from thejcannon:noexcept_specGennadiy Civil2019-10-112-51/+20
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 274155281
* | | | | | Googletest exportmisterg2019-10-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated release 1.10.0 link to point to https://github.com/google/googletest/releases/tag/release-1.10.0 ( that has the high level release info) PiperOrigin-RevId: 274147093
* | | | | | Merge pull request #2456 from kuzkry:gtest-port-clean-up_breaking-changesGennadiy Civil2019-10-111-9/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 274100752
| * | | | | | remove GTEST_HAS_STD_STRINGKrystian Kuzniarek2019-09-101-9/+0
| | | | | | |
* | | | | | | Merge pull request #2498 from thejcannon:noexcept_specGennadiy Civil2019-10-112-20/+51
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | PiperOrigin-RevId: 274097989
| * | | | | | Made noexcept condition more excitingJoshua Cannon2019-10-101-8/+12
| | | | | | |
| * | | | | | Use declval in noexcept expressionJoshua Cannon2019-10-071-7/+8
| | | | | | |
| * | | | | | Switch to free function to avoid GCC bugJoshua Cannon2019-10-071-3/+3
| | | | | | |
| * | | | | | Avoid comma operatorJoshua Cannon2019-10-071-2/+3
| | | | | | |
| * | | | | | Fix spacingJoshua Cannon2019-10-071-3/+3
| | | | | | |
| * | | | | | Use the verbatim noexcept spec in MOCKED_METHODJoshua Cannon2019-10-072-10/+35
| | | | | | |
* | | | | | | Googletest exportAbseil Team2019-10-112-4/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix a bug in dealing with paramaterized tests where the name is it self a macro expansion. - Add a compile time check to ensure that the parameters to TEST_P and INSTANTIATE_TEST_SUITE_P are not empty. The above fix causes some compilers to fail in that case and even where it works, it's likely to result in technically invalid code by virtue of creating reserved identifiers: https://en.cppreference.com/w/cpp/language/identifiers PiperOrigin-RevId: 274047249
* | | | | | | Googletest exportAbseil Team2019-10-113-34/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the O(n^2) number of instantiations in ElemFromList. It is now O(n). It still has O(1) instantiation depth. PiperOrigin-RevId: 273980821
* | | | | | | Merge pull request #2505 from zebmason:cornichonGennadiy Civil2019-10-101-0/+3
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273949529
| * | | | | | | Mention Cornichon as a related open source projectZebedee Mason2019-10-091-0/+3
| | | | | | | |
* | | | | | | | Googletest exportAbseil Team2019-10-104-10/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a compile time check to ensure that the parameters to TEST_P and INSTANTIATE_TEST_SUITE_P are not empty. Some compilers already fail in that case and, even where it works, it's likely to result in technically invalid code by virtue of creating reserved identifiers: https://en.cppreference.com/w/cpp/language/identifiers PiperOrigin-RevId: 273832263
* | | | | | | | Merge pull request #2497 from thejcannon:handle_null_filenameGennadiy Civil2019-10-102-2/+10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273585229
| * | | | | | | | Use FormatFileLocation for streaming file and lineJoshua Cannon2019-10-072-2/+4
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #2448 from kuzkry:bad-googletest-exportGennadiy Civil2019-10-105-8/+4
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | | | | | | | | PiperOrigin-RevId: 273585026
| * | | | | | | square away the stuff that hasn't been merged in a manual reviewKrystian Kuzniarek2019-09-162-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes up f2fb48c3 (a manual merge) that has abandoned some things from PR #2407.
| * | | | | | | square away the stuff that hasn't been merged in a manual reviewKrystian Kuzniarek2019-09-163-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes up ab8f346b (a manual merge) that has abandoned some things from PR #2395.
* | | | | | | | Merge pull request #2475 from peterbarker:pr/google-add-overrideGennadiy Civil2019-10-084-7/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273379796
| * | | | | | | | Add many missing override keywordsPeter Barker2019-09-254-7/+7
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | This helps corrects builds with -Werror=suggest-overrides
* | | | | | | | Merge pull request #2495 from hyukmyeong:typoGennadiy Civil2019-10-073-9/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273346440
| * | | | | | | | Fix typo in documentshyuk.myeong2019-10-013-9/+7
| | | | | | | | |
* | | | | | | | | Merge pull request #2491 from SoapGentoo:fix-GNUInstallDirs-pkg-configGennadiy Civil2019-10-075-12/+86
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273342665
| * | | | | | | | Add documentation for pkg-config in cross-compilation settingsDavid Seifert2019-10-051-0/+78
| | | | | | | | |
| * | | | | | | | Revert "Use pcfiledir for prefix in pkgconfig file"David Seifert2019-10-054-12/+8
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The change makes implicit assumptions on the layout of the install tree, which is going to break in many ways. The correct solution is to use the `PKG_CONFIG_SYSROOT_DIR` variable to inject the cross-compiled sysroot into `-I` and `-L` paths.
* | | | | | | | Googletest exportmisterg2019-10-031-14/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add an announcement about taking a dep on Abseil soon PiperOrigin-RevId: 272683117
* | | | | | | | Googletest exportAbseil Team2019-10-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Release Googletest 1.10 PiperOrigin-RevId: 272658347
* | | | | | | | Googletest exportAbseil Team2019-10-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a compile time check to ensure that the parameters to TEST and TEST_F are not empty Some compilers may already fail in that case and even where it works, it's likely to result in technically invalid code by virtue of creating reserved identifiers: https://en.cppreference.com/w/cpp/language/identifiers PiperOrigin-RevId: 272543242
* | | | | | | | Googletest exportmisterg2019-10-031-5/+0
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove outdated CppCon announcement PiperOrigin-RevId: 271866311
* | | | | | | Googletest exportmisterg2019-09-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix OSS Travis Builds -remove hardcoded updated package from brew PiperOrigin-RevId: 271863378