summaryrefslogtreecommitdiffstats
path: root/googletest
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | 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
* | | Merge pull request #2387 from kuzkry:iffShaindel Schwartz2019-09-1222-232/+236
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 268693457
| * | | restore mistakenly removed iffs in their explicit formrefs/pull/2387/headKrystian Kuzniarek2019-08-2022-211/+223
| | | | | | | | | | | | | | | | | | | | Due to confusion arisen from "iff" standing for "if and only if", this commit uses the latter.
* | | | Googletest exportHosein Ghahremanzadeh2019-09-122-19/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge 4c9ef099b29d2c840c04643cd9662fd7be712f7b into 565f1b848215b77c3732bca345fe76a0431d8b34 Closes #2403 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/googletest/pull/2403 from IYP-Programer-Yeah:remove-compile-assert-type-equal 4c9ef099b29d2c840c04643cd9662fd7be712f7b PiperOrigin-RevId: 268681883
* | | | Googletest exportAbseil Team2019-09-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | In the text fixtures section, point to the specific FAQ entry on constructors vs. `SetUp`. PiperOrigin-RevId: 268509969
* | | | Googletest exportAbseil Team2019-09-101-43/+42
| |/ / |/| | | | | | | | | | | | | | Some mechanical and grammatical fixes to the Primer. PiperOrigin-RevId: 268200783
* | | Googletest exportAbseil Team2019-09-062-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extend gtest-port and stubs for ESP_PLATFORM ESP_PLATFORM is the macro used to indicate compilation for the ESP32 using the esp-idf. This isn't a fully posix compatible system so various features of google test need to be stubbed out in order for it to work. It's oddly similar to the GTEST_OS_WINDOWS_PHONE setup. PiperOrigin-RevId: 267471968
* | | Googletest exportAbseil Team2019-09-062-2/+2
| | | | | | | | | | | | | | | | | | Internal Change PiperOrigin-RevId: 267457395
* | | Googletest exportkuzkry2019-09-062-41/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Merge 7f4f58da20e1066a888d3e4bcbef541db798a605 into 90a443f9c2437ca8a682a1ac625eba64e1d74a8a Closes #2395 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/googletest/pull/2395 from kuzkry:custom-type-traits-remove_reference 7f4f58da20e1066a888d3e4bcbef541db798a605 PiperOrigin-RevId: 266189044
* | | Merge pull request #2398 from kuzkry:custom-type-traits-iterator_traitsGennadiy Civil2019-08-293-42/+3
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 266136896
| * | | remove a custom implementation of std::iterator_traitsKrystian Kuzniarek2019-08-133-42/+3
| | | |
* | | | Googletest exportAbseil Team2019-08-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fix invalid g3doc syntax highlighting languages. PiperOrigin-RevId: 265905539
* | | | Googletest exportkuzkry2019-08-232-10/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge b8ca465e73ac0954a0c9eec2a84bdd8913d5763b into 90a443f9c2437ca8a682a1ac625eba64e1d74a8a Closes #2396 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/googletest/pull/2396 from kuzkry:custom-type-traits-true/false_type-and-bool_constant b8ca465e73ac0954a0c9eec2a84bdd8913d5763b PiperOrigin-RevId: 265064856
* | | | Merge pull request #2401 from kuzkry:custom-type-traits-add_lvalue_referenceXiaoyi Zhang2019-08-232-38/+0
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 264842713