aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Googletest exportAbseil Team2020-03-172-6/+4
| | | | | | | | | | | | | | | | | | Move internal function out of header because Hyrum's law always wins. PiperOrigin-RevId: 301446904
* | | Googletest exportdmauro2020-03-171-5/+3
| | | | | | | | | | | | | | | | | | | | | Use a polymorphic matcher instead of the GreaterThan<int> test matcher to fix the sign-comparison warning on MSVC. PiperOrigin-RevId: 301163657
* | | Googletest exportAbseil Team2020-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fix Compilation against CMake < 3.7 (Fix #2711) `VERSION_GREATER_EQUAL` was introduced in CMake 3.7 ref: https://cmake.org/cmake/help/v3.7/release/3.7.html#commands PiperOrigin-RevId: 300817917
* | | Googletest exportAbseil Team2020-03-172-4/+0
| | | | | | | | | | | | | | | | | | Internal change PiperOrigin-RevId: 299345492
* | | Googletest exportAbseil Team2020-03-172-259/+160
| | | | | | | | | | | | | | | | | | Simplify the fallback printing logic to have a single sequence of trial printers. PiperOrigin-RevId: 298621376
* | | Merge pull request #2722 from JohanMabille:warningsvslashg2020-03-171-1/+1
|\ \ \ | | | | | | | | | | | | PiperOrigin-RevId: 298608772
| * | | Fixed warningsJohan Mabille2020-02-211-1/+1
| | | |
* | | | Merge pull request #2716 from kuzkry:autotools-leftovervslashg2020-03-171-3/+3
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 298599235
| * | | | remove a dead reference to the Autotools scriptKrystian Kuzniarek2020-01-291-3/+3
| | | | |
* | | | | Googletest exportAbseil Team2020-03-171-1/+1
| |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Remove public buganizer reference from googletest cookbook. It also seems that this bug is obsolete. PiperOrigin-RevId: 298598298
* | | | Googletest exportAbseil Team2020-02-282-47/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename internal color enumerators to avoid conflicts with curses.h macro definitions. Fixes #2685 PiperOrigin-RevId: 297639382
* | | | Googletest exportAbseil Team2020-02-282-7/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Relax the implementation of MatcherCast to allow conversion of `Matcher<T>` to `Matcher<const T&>`. They have the same match signature. PiperOrigin-RevId: 297115843
* | | | Googletest exportAbseil Team2020-02-283-22/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow construction of an Action from a callable of zero args Action already allows construction from a callable with the same args as the mocked function, without needing to wrap the callable in Invoke. However, if you don't care about the arguments to the mocked function you need to either accept all of them or wrap your callable in InvokeWithoutArgs. This change makes both of those unnecessary, since it allows you to pass a no-args callable to Action directly. PiperOrigin-RevId: 296117034
* | | | Googletest exportAbseil Team2020-02-131-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the CMAKE_CXX_STANDARD from GoogleTest's CMakeLists.txt This causes ABI issues since it can create a mixed-mode build. The value should be inherited from the top-level build if it needs to be set. PiperOrigin-RevId: 294730724
* | | | Googletest exportAbseil Team2020-02-117-164/+197
| | | | | | | | | | | | | | | | | | | | | | | | Add gmock Matcher<std::string_view> specialization. PiperOrigin-RevId: 294443240
* | | | Googletest exportAbseil Team2020-02-113-1871/+1892
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix gmock_gen to use MOCK_METHOD instead of old style macros. Fix several related bugs in argument parsing and return types. - handle commas more correctly in return types - handle commas correctly in arguments - handle default values more correctly PiperOrigin-RevId: 294435093
* | | | Googletest exportAbseil Team2020-02-112-371/+406
| | | | | | | | | | | | | | | | | | | | | | | | Fix gmock_gen to use MOCK_METHOD instead of old style macros. PiperOrigin-RevId: 294360947
* | | | Googletest exportAbseil Team2020-02-112-406/+371
| | | | | | | | | | | | | | | | | | | | | | | | Fix gmock_gen to use MOCK_METHOD instead of old style macros. PiperOrigin-RevId: 294332975
* | | | Googletest exportAbseil Team2020-02-111-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactor function GetNextPrime so that the loop precondition is checked before loop instead of during every loop run. Also by removing the loop condition, it shows that the only exit from the loop is the return statement. PiperOrigin-RevId: 293932783
* | | | Googletest exportAbseil Team2020-02-078-905/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get rid of gmock-generated-matchers.h and gmock-generated-matchers.h.pump. Stop using pump for MATCHER* macroses generation. PiperOrigin-RevId: 293878808
* | | | Googletest exportdurandal2020-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tag the function generated by MATCHER with GTEST_ATTRIBUTE_UNUSED_ to fix CI builds of gmock-matchers_test.cc vs. -Wunused-function. See https://github.com/google/googletest/pull/2697 for breakage. PiperOrigin-RevId: 293669752
* | | | Googletest exportAbseil Team2020-02-078-1550/+299
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get rid of gmock-generated-function-mockers.h and gmock-generated-function-mockers.h.pump. Stop using pump for GMOCK_METHOD* macroses generation. PiperOrigin-RevId: 293454519
* | | | Googletest exportAbseil Team2020-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | ...text exposed to GitHub repo https://www.github.com/google/googletest PiperOrigin-RevId: 293438092
* | | | Googletest exportAbseil Team2020-02-073-471/+421
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pass method's parameters count to internal GMOCK_METHOD* macro. This will help removing copypaste in every GMOCK_METHOD* macro in future. PiperOrigin-RevId: 292932554
* | | | Googletest exportAbseil Team2020-02-074-34/+68
| | | | | | | | | | | | | | | | | | | | | | | | Fix std::move to std::forward where appropriate to support reference types. PiperOrigin-RevId: 292923058
* | | | Googletest exportAbseil Team2020-02-071-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disable warning C4800 for Visual Studio 2019. The compiler warning C4800 is disabled by default in Visual Studio 2019, but it can be enabled on the command line. The only version of Visual Studio that does not support warning C4800 is Visual Studio 2017. PiperOrigin-RevId: 292624510
* | | | Googletest exportAbseil Team2020-02-074-54/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix use of reserved names. Minimize code duplication needed for explict-vs-nonexplicit constructor. PiperOrigin-RevId: 292555014
* | | | Googletest exportAbseil Team2020-02-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Add documentation for ASSERT_DEBUG_DEATH/EXPECT_DEBUG_DEATH PiperOrigin-RevId: 292138974
* | | | Googletest exportAbseil Team2020-02-071-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Add includes for type_traits and utility to gmock-function-mocker.h: macros in the file require these headers. PiperOrigin-RevId: 291782497
* | | | Googletest exportAbseil Team2020-02-073-441/+257
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create implementation macroses for matchers to move variadic parameters to the end of parameters list. To save backward compatibility, old macroses will be still taking `description` parameter as the last one. But they will use INTERNAL macro that takes `description` as the second parameter. PiperOrigin-RevId: 291724469
* | | | Googletest exportAbseil Team2020-02-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Adds missing `#define` guard around `TEST_F(...)` PiperOrigin-RevId: 291703056
* | | | Googletest exportAbseil Team2020-02-073-208/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move part of functionality of Matcher* class to the base one. Reduce copypaste. Make constructor and conversion operator of Matcher* class independent of pump. PiperOrigin-RevId: 291405510
* | | | Googletest exportAbseil Team2020-02-072-61/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Deleted an orphaned duplicate file and exclude another that shouldn't be part of :gtest_all_test. This showed up while trying to debug the presubmit failure for: https://github.com/google/googletest/pull/2683 PiperOrigin-RevId: 291398123
* | | | Googletest exportAbseil Team2020-02-071-1/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | Add missing explicit keyword for gmock_Impl constructor. When switching to using GMOCK_PP in ACTION* macroses `explicit` keyword was missed in gmock_Impl constructor causing ClangTidy warnings in ACTION_P macro. PiperOrigin-RevId: 291159975
* | | Googletest exportAbseil Team2020-01-211-1/+1
| | | | | | | | | | | | | | | | | | Fix SCOPED_TRACE() message header in example PiperOrigin-RevId: 290800241
* | | Googletest exportAbseil Team2020-01-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Allow copying of the string in MatchAndExplain. Otherwise, conversions from std::string_view to std::string will fail as being explicit PiperOrigin-RevId: 290301103
* | | Merge pull request #2665 from ↵Xiaoyi Zhang2020-01-211-3/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | bysreg:fix_noshortcircuitfailure_detectsflakyshortcircuit_test PiperOrigin-RevId: 290256504
| * | | Use IsReadableTypeName IsReadableTypeName in OfType function in ↵Muhammad Hilman Beyri2020-01-121-1/+1
| | | | | | | | | | | | | | | | gmock-matchers_test.cc
| * | | fix unit test failure on NoShortCircuitOnFailure and ↵Muhammad Hilman Beyri2020-01-121-2/+2
| | | | | | | | | | | | | | | | DetectsFlakyShortCircuit when GTEST_HAS_RTTI is 1
* | | | Merge pull request #2672 from ivan1993br:ivan1993br-platformio_updateXiaoyi Zhang2020-01-211-4/+0
|\ \ \ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 290255937
| * | | | Remove exclusion of *-main and*-all targetsIvan Oliveira Tarifa2020-01-151-4/+0
| |/ / / | | | | | | | | Removing exclusion of *-main and*-all targets from the library.json used on platformio.
* | | | Googletest exportAbseil Team2020-01-214-10/+37
| | | | | | | | | | | | | | | | | | | | | | | | Add extra filtering so that the reported message differentiates between the case where INSTANTIATE_TEST_SUITE_P is missing vs. the case where TEST_P is missing. PiperOrigin-RevId: 290114508
* | | | Googletest exportAbseil Team2020-01-165-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | Correct the spelling of PARAMETERIZED. PiperOrigin-RevId: 289897278
* | | | Googletest exportAbseil Team2020-01-163-885/+238
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use GMOCK_PP to create GMOCK_INTERNAL_ACTION macro. Create GMOCK_INTERNAL_ACTION macro that generates ACTION_P* macroses using GMOCK_PP. PiperOrigin-RevId: 289815906
* | | | Googletest exportAbseil Team2020-01-163-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | Wire up things to support marking a type paramaterized test as allowed to be un-instantiated. PiperOrigin-RevId: 289699939
* | | | Googletest exportAbseil Team2020-01-163-198/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use GMOCK_PP to generate args boilerplate. Move common args describing part to separate macroses that uses GMOCK_PP to generate sequences. PiperOrigin-RevId: 289655624
* | | | Googletest exportAbseil Team2020-01-168-1/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST to mark a paramaterized test as allowed to be un-instantiated. This allows test suites, that are defined in libraries and, for other reasons, get linked in (which should probably be avoided, but isn't always possible) to be marked as allowed to go uninstantiated. This can also be used to grandfather existing issues and expedite adoption of the checks with regards to new cases before they can be fixed. PiperOrigin-RevId: 289581573
* | | | Googletest exportAbseil Team2020-01-161-1/+5
|/ / / | | | | | | | | | | | | | | | Change testing::TempDir() return value for Android PiperOrigin-RevId: 289102017
* | | Googletest exportAbseil Team2020-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Removing GTEST_API from TrueWithString. This type is only used in test code on one side of a DLL boundary so it is not necessary. PiperOrigin-RevId: 288927929
* | | Googletest exportAbseil Team2020-01-093-186/+94
| | | | | | | | | | | | | | | | | | | | | | | | Move part of functionality of Action* class to the base one. Reduce copypaste. Make constructor and conversion operator of Action* class independent of pump. PiperOrigin-RevId: 288907005