summaryrefslogtreecommitdiffstats
path: root/googletest
Commit message (Collapse)AuthorAgeFilesLines
* Googletest exportAbseil Team2019-10-291-5/+11
| | | | | | Editorial cleanup of the "write the main function" section PiperOrigin-RevId: 277102507
* Googletest exportAbseil Team2019-10-291-1/+7
| | | | | | Make it clearer that users should _not_ write their own main functions. PiperOrigin-RevId: 277079721
* Merge pull request #2388 from kuzkry:remove-gtest-type-util.pumpvslashg2019-10-298-4564/+65
|\ | | | | | | PiperOrigin-RevId: 276944601
| * update CONTRIBUTORSrefs/pull/2388/headKrystian Kuzniarek2019-10-251-0/+1
| |
| * move the pumping script to googlemockKrystian Kuzniarek2019-10-252-1045/+0
| |
| * remove gtest-type-util.h.pumpKrystian Kuzniarek2019-10-252-192/+1
| |
| * replace autogenerated TemplatesX classes by variadic onesKrystian Kuzniarek2019-10-254-1743/+28
| |
| * replace autogenerated TypesX classes by variadic onesKrystian Kuzniarek2019-10-255-1651/+102
| |
* | Merge pull request #2515 from ciband:feat/support_esp8266vslashg2019-10-255-6/+40
|\ \ | |/ |/| | | PiperOrigin-RevId: 276333426
| * feat: Add ESP8266 supportChris2019-10-145-6/+38
| |\ | | | | | | | | | | | | | | | | | | | | | * Added support for ESP8266 * Removed previous Arduino defines in favor of GTEST_OS_* syntax * Improved PlatformIO library file to be more stable when consumed in client applications.
| | * Update to distinguish prelease purpose of this fork.Chris Johnson2019-10-111-5/+5
| | |
| | * Add ESP8266 configs to PlatformIO buildChris Johnson2019-10-113-2/+28
| | | | | | | | | | | | | | | Added various conditional compliations for ESP8266 to stub out missing functionality.
| | * feat: Add support for ESP8266 platformChris Johnson2019-10-114-2/+8
| |/ | | | | | | | | | | Added support for ESP8266 Arduino platform. Refactored Arduino defines to use the GTEST_OS_* model.
* | Googletest exportAbseil Team2019-10-235-30/+86
| | | | | | | | | | | | Add a matcher `testing::ReturnRoundRobin` which, on each call, returns the next element in the sequence, restarting at the beginning once it has reached the end. PiperOrigin-RevId: 276312136
* | Merge pull request #2522 from cloudrex:patch-1vslashg2019-10-231-2/+2
|\ \ | | | | | | | | | PiperOrigin-RevId: 276271201
| * | Remove extra spacerefs/pull/2522/headλtlas2019-10-191-2/+1
| | |
* | | Googletest exportAbseil Team2019-10-231-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Split the scoped trace examples into two snippets. This doesn't have an effect in the github markdown renderer, but in some other renderers/templates, this leads them to be independently copy-pastable. In particular, the markdown rendering that Google uses internally has a copy button for each code snippet, which, before this change, would copy both lines. Bad copy button, no cookie! After this change, there will be two such buttons, one per line, and clicking a copy button will copy only the one snippet it is next to, and not the other. This is desirable because nobody will ever want to copy both lines, only one or the other. PiperOrigin-RevId: 276079009
* | | Googletest exportAbseil Team2019-10-221-1/+1
| | | | | | | | | | | | | | | | | | Typo in Registering tests programmatically section. Changed "were" to "where". PiperOrigin-RevId: 276060801
* | | Merge pull request #2517 from snarkmaster:masterGennadiy Civil2019-10-226-5/+71
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 275869169
| * | | [googletest] Output skip messagerefs/pull/2517/headAlexey Spiridonov2019-10-176-5/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #2208 Previously, skip messages were invisible, so debugging skips was hard. Now we have this: ``` $ ./googletest/gtest_skip_test Running main() from /home/lesha/github/snarkmaster/googletest/googletest/src/gtest_main.cc [==========] Running 3 tests from 2 test suites. [----------] Global test environment set-up. [----------] 1 test from SkipTest [ RUN ] SkipTest.DoesSkip /home/lesha/github/snarkmaster/googletest/googletest/test/gtest_skip_test.cc:38: Skipped skipping single test [ SKIPPED ] SkipTest.DoesSkip (0 ms) [----------] 1 test from SkipTest (1 ms total) ... ```
* | | | Merge pull request #2444 from kuzkry:remove-GTEST_ARRAY_SIZE_Gennadiy Civil2019-10-221-3/+0
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 275842505
| * | | | remove GTEST_ARRAY_SIZE_refs/pull/2444/headKrystian Kuzniarek2019-09-231-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This macro didn't work when an array was passed to a function by pointer, in which case the information about its size was lost. Better alternatives are: * std::extent<T>::value (compile-time) * std::array<T, N>::size() (compile-time) * std::distance(std::begin(array), std::end(array)) (run-time)
* | | | | Googletest exportAbseil Team2019-10-222-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove bool_constant in favor of std::integral_constant<bool, ...>; The one non-trivial use of bool_constant has been changed to have significantly fewer template specializations. PiperOrigin-RevId: 275842490
* | | | | Merge pull request #2454 from kuzkry:gtest-port-clean-up_dead-functionGennadiy Civil2019-10-222-11/+5
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | PiperOrigin-RevId: 275838743
| * | | | change includes in gtest-port.hrefs/pull/2454/headKrystian Kuzniarek2019-09-112-4/+2
| | | | |
| * | | | remove a dead functionKrystian Kuzniarek2019-09-101-4/+0
| | | | |
* | | | | Merge pull request #2507 from roblub:masterGennadiy Civil2019-10-173-6/+6
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | PiperOrigin-RevId: 275076905
| * | | | Add more override keywordsrefs/pull/2507/headRobert Luberda2019-10-113-6/+6
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-161-1/+0
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 275058934
| * | | | change usingsKrystian Kuzniarek2019-09-121-1/+0
| | | | |
* | | | | 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 #2456 from kuzkry:gtest-port-clean-up_breaking-changesGennadiy Civil2019-10-111-9/+0
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 274100752
| * | | | remove GTEST_HAS_STD_STRINGrefs/pull/2456/headKrystian Kuzniarek2019-09-101-9/+0
| | |/ / | |/| |
* | | | 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-112-32/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | 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-101-1/+5
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 273585229
| * | | | Use FormatFileLocation for streaming file and linerefs/pull/2497/headJoshua Cannon2019-10-071-1/+2
| | | | |
* | | | | Merge pull request #2448 from kuzkry:bad-googletest-exportGennadiy Civil2019-10-102-3/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273585026
| * | | | | square away the stuff that hasn't been merged in a manual reviewrefs/pull/2448/headKrystian Kuzniarek2019-09-162-3/+2
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | This fixes up f2fb48c3 (a manual merge) that has abandoned some things from PR #2407.
* | | | | Merge pull request #2475 from peterbarker:pr/google-add-overrideGennadiy Civil2019-10-084-7/+7
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273379796
| * | | | | Add many missing override keywordsrefs/pull/2475/headPeter Barker2019-09-254-7/+7
| |/ / / / | | | | | | | | | | | | | | | This helps corrects builds with -Werror=suggest-overrides
* | | | | Merge pull request #2495 from hyukmyeong:typoGennadiy Civil2019-10-072-8/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 273346440
| * | | | | Fix typo in documentsrefs/pull/2495/headrefs/pull/2486/headhyuk.myeong2019-10-012-8/+6
| | | | | |
* | | | | | Merge pull request #2491 from SoapGentoo:fix-GNUInstallDirs-pkg-configGennadiy Civil2019-10-073-6/+82
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | PiperOrigin-RevId: 273342665
| * | | | | Add documentation for pkg-config in cross-compilation settingsrefs/pull/2491/headDavid Seifert2019-10-051-0/+78
| | | | | |
| * | | | | Revert "Use pcfiledir for prefix in pkgconfig file"David Seifert2019-10-052-6/+4
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 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 exportAbseil Team2019-09-271-7/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use a more portable path for Android to write temp files to. /sdcard is *not* guaranteed to be available, but /data/local/tmp is. In some emulated situations, /sdcard may not be mounted, may not be R/W, or mounting may be delayed until *after* the test process begins. This is fairly common location to use. See e.g.: https://reviews.llvm.org/D9569 PiperOrigin-RevId: 270909282
* | | Googletest exportkuzkry2019-09-164-20/+10
| |/ |/| | | | | | | | | | | | | | | Merge 3bdefdb473d304803d2a38e2a2cd5cdc1827c3bd into fb49e6c164490a227bbb7cf5223b846c836a0305 Closes #2407 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/googletest/pull/2407 from kuzkry:StaticAssertTypeEq 3bdefdb473d304803d2a38e2a2cd5cdc1827c3bd PiperOrigin-RevId: 269255328