summaryrefslogtreecommitdiffstats
path: root/googletest/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2589 from ↵refs/pull/2633/head1278977C598F83A02A525FEA38941265Matt Calabrese2019-12-131-9/+3
|\ | | | | | | | | | | kuzkry:remove-workaround_g++-no-space-after-first-macro-argument PiperOrigin-RevId: 285255373
| * remove g++ 2.95.0 workaround: no space after first comma in macrosrefs/pull/2589/headKrystian Kuzniarek2019-11-221-9/+3
| |
* | Export Test - Do Not MergeAbseil Team2019-12-133-3/+22
| | | | | | | | | | | | | | | | | | | | | | Detect when C++ parametric tests (TEST_P) are not instantiated. When an un-instantiated TEST_P is found, a new test will be inserted that will emit a warning message. This can be made to error with minor code edits. In the future, that is intended to be the default. PiperOrigin-RevId: 284901666
* | Googletest exportAbseil Team2019-12-064-16/+120
| | | | | | | | | | | | | | | | | | | | Change googletest to notice failures during SetUpTestSuite() and TearDownTestSuite(). Previously, errors that occurred during those functions were logged but otherwise ignored. After this change, such failures will cause the test to fail and a brief summary will be printed at the bottom of the test log. See https://github.com/google/googletest/issues/2330. PiperOrigin-RevId: 284033342
* | Googletest exportAbseil Team2019-12-051-1/+1
| | | | | | | | | | | | Internal change PiperOrigin-RevId: 283948137
* | Merge pull request #2588 from kuzkry:remove-workaround_g++-incorrect-commentsGennadiy Rozental2019-11-261-16/+11
|\ \ | | | | | | | | | PiperOrigin-RevId: 282568282
| * | change incorrect commentsrefs/pull/2588/headKrystian Kuzniarek2019-11-051-16/+11
| |/
* | Googletest exportAbseil Team2019-11-261-1/+1
| | | | | | | | | | | | | | | | Make generating goldens work with Python 3 golden_file.write(output) fails with Python 3 with: TypeError: a bytes-like object is required, not 'str' PiperOrigin-RevId: 282316101
* | Googletest exportAbseil Team2019-11-222-31/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | Use standard C++11 integer types in gtest-port.h. Remove testing::internal::{Int,Uint}{32,64} in favor of types guaranteed to be in <cstdint> since C++11. Tests for built-in integer type coverage are switched from {Int,Uint}64 to [unsigned] long long, which is guaranteed by C++11 to exist and be at least 64-bit wide. PiperOrigin-RevId: 281565263
* | Merge pull request #2373 from Youw:masterXiaoyi Zhang2019-11-051-0/+13
|\ \ | |/ |/| | | PiperOrigin-RevId: 278601074
| * Added special catch for std::exception in GTEST_TEST_NO_THROW_refs/pull/2373/headIhor Dutchak2019-10-301-0/+13
| |
* | Merge pull request #2453 from kuzkry:gtest-port-clean-up_kMaxBiggestIntXiaoyi Zhang2019-11-042-16/+15
|\ \ | | | | | | | | | PiperOrigin-RevId: 278008286
* \ \ Merge pull request #2453 from kuzkry:gtest-port-clean-up_kMaxBiggestIntvslashg2019-11-012-15/+16
|\ \ \ | |/ / | | | | | | PiperOrigin-RevId: 277979766
| * | remove BiggestIntrefs/pull/2453/headKrystian Kuzniarek2019-10-242-11/+11
| | |
* | | replace autogenerated TypesX classes by variadic onesKrystian Kuzniarek2019-10-251-4/+5
| | |
* | | Merge pull request #2517 from snarkmaster:masterGennadiy Civil2019-10-223-1/+68
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 275869169
| * | | [googletest] Output skip messagerefs/pull/2517/headAlexey Spiridonov2019-10-173-1/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #2507 from roblub:masterGennadiy Civil2019-10-171-2/+2
|\ \ \ \ | |/ / / |/| | | | | | | PiperOrigin-RevId: 275076905
| * | | Add more override keywordsrefs/pull/2507/headRobert Luberda2019-10-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-162-14/+3
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Googletest exportAbseil Team2019-10-111-1/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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-111-11/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-103-5/+5
|/ / / | | | | | | | | | | | | | | | | | | 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 #2387 from kuzkry:iffShaindel Schwartz2019-09-127-26/+27
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 268693457
| * | | restore mistakenly removed iffs in their explicit formrefs/pull/2387/headKrystian Kuzniarek2019-08-207-26/+26
| | | | | | | | | | | | | | | | | | | | Due to confusion arisen from "iff" standing for "if and only if", this commit uses the latter.
* | | | Googletest exportHosein Ghahremanzadeh2019-09-121-10/+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 exportkuzkry2019-09-061-25/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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-291-18/+0
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 266136896
| * | | remove a custom implementation of std::iterator_traitsKrystian Kuzniarek2019-08-131-18/+0
| | | |
* | | | Merge pull request #2401 from kuzkry:custom-type-traits-add_lvalue_referenceXiaoyi Zhang2019-08-231-25/+0
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 264842713
| * | | | remove a custom implementation of std::add_lvalue_referencerefs/pull/2401/headKrystian Kuzniarek2019-08-131-25/+0
| |/ / /
* | | | Merge pull request #2393 from kuzkry:custom-type-traits-remove_constXiaoyi Zhang2019-08-211-29/+2
|\ \ \ \ | |_|/ / |/| | | | | | | PiperOrigin-RevId: 264652890
| * | | remove a custom implementation of std::remove_constrefs/pull/2393/headKrystian Kuzniarek2019-08-131-29/+2
| |/ /
* | | Merge pull request #2381 from Yannic:fix_bazelGennadiy Civil2019-08-191-0/+3
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 264186624
| * | | Prepare for Bazel incompatible changesYannic Bonenberger2019-08-071-0/+3
| | |/ | |/| | | | | | | | | | | | | Fixes googletest for upcoming `--incompatible_load_cc_rules_from_bzl` (https://github.com/bazelbuild/bazel/issues/8743) and `--incompatible_load_python_rules_from_bzl` (https://github.com/bazelbuild/bazel/issues/9006). This change was automatically generated with `buildifier -lint=fix -warnings=all $(find . -name "BUILD" -o -name "BUILD.bazel" -o -name "*.bzl")`.
* | | remove custom implementations of std::is_samerefs/pull/2399/headKrystian Kuzniarek2019-08-142-12/+13
| |/ |/|
* | Merge pull request #2372 from pitrou:issue2371-windows-crt-assertsGennadiy Civil2019-08-071-0/+56
|\ \ | | | | | | | | | PiperOrigin-RevId: 262040609
| * | Fix #2371: Redirect Windows CRT assertions to stderrrefs/pull/2372/headAntoine Pitrou2019-08-061-0/+56
| |/
* | Merge pull request #2111 from knuto:pr/remove_slashGennadiy Civil2019-08-062-3/+14
|\ \ | |/ |/| | | PiperOrigin-RevId: 261906004
| * Remove / from parameterized test names if base test name is emptyrefs/pull/2111/headKnut Omang2019-04-262-3/+18
| | | | | | | | | | | | | | This is useful to let a subsystem generate test names based on parameterized tests without exposing them as such to the user. Signed-off-by: Knut Omang <knut.omang@oracle.com>
* | Googletest exportmisterg2019-08-012-5/+119
| | | | | | | | | | | | Internal Change PiperOrigin-RevId: 260939845
* | fix typosrefs/pull/2356/headKrystian Kuzniarek2019-07-307-23/+23
| |
* | Googletest exportAbseil Team2019-07-265-481/+507
| | | | | | | | | | | | | | | | Adds ISO8601 timestamps to XML output and RFC3339 timestamps to JSON output. Adds timestamps to testsuites, testsuite and testcases structured JSON/XML output for better reporting how/where time is spent on tests. PiperOrigin-RevId: 260039817
* | Merge pull request #2254 from chaoran:masterGennadiy Civil2019-05-171-0/+59
|\ \ | | | | | | | | | PiperOrigin-RevId: 248759825
| * | add unit test for overload & operatorrefs/pull/2254/headChaoran Yang2019-05-131-0/+91
|/ /
* | Googletest exportAbseil Team2019-05-101-68/+73
|/ | | | | | Print the test output on assertion failure. PiperOrigin-RevId: 247283764
* Googletest exportAbseil Team2019-04-243-6/+32
| | | | | | | | Add GTEST_FAIL_AT, an equivalent to ADD_FAILURE_AT but that spawns a fatal failure rather than a non-fatal, eg. the equivalent of an ASSERT* failure rather than an EXPECT* failure. PiperOrigin-RevId: 244746609
* Merge pull request #2170 from ngie-eign:issue-2146-ver2Gennadiy Civil2019-04-183-22/+27
|\ | | | | | | PiperOrigin-RevId: 244069956