| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Remove the #ifs for old, unsupported and buggy compilers:
* old versions of GCC & MSVC
* Symbian
PiperOrigin-RevId: 227116941
|
|\ \ \ \ \ \ \
| |_|_|_|/ / /
|/| | | | | | |
Remove outdated scripts
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This reverts commit 4665eee10a1d495aec9970fddf6231cf2339b1b7.
|
| |\ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Update Xcode project file
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Remove files which no longer exist.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
PiperOrigin-RevId: 227030722
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | |_|/ / / /
| |/| | | | |
| | | | | | | |
PiperOrigin-RevId: 227028806
|
| | |/ / / /
| |/| | | | |
|
| | | | | | |
|
|\| | | | |
| | | | | |
| | | | | |
| | | | | | |
PiperOrigin-RevId: 226493373
|
| | | | | | |
|
| | |_|_|/
| |/| | | |
|
| |_|/ /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Get rid of code generation for NiceMock / StrictMock.
They got small enough that it doesn't make sense to generate them.
PiperOrigin-RevId: 226455689
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add public entry point testing::RegisterTest.
PiperOrigin-RevId: 226350937
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Use std::function to implement type erasure in Action, wrapping the legacy
ActionInterface if necessary.
This makes functors / std::function the primary way to implement Action; the
existing ActionInterface implementations are handled through ActionAdaptor.
The existing actions are not (yet) migrated though; they'll pay the cost of one
additional indirection - but that should be negligible.
PiperOrigin-RevId: 226126137
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Unifdef c++11-related macros from googletest now that it requires C++11.
PiperOrigin-RevId: 225905601
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Suppress C4503 for MCVS , again
PiperOrigin-RevId: 225895719
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Suppress C4503 for MCVS
PiperOrigin-RevId: 225871050
|
| | | |
| | | |
| | | | |
Update build badge to point to the correct location
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Internal Change
PiperOrigin-RevId: 225849972
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Remove GTEST_REFERENCE_TO_CONST_ usage from GMock. In C++11, it's redundant.
PiperOrigin-RevId: 225719210
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Allow container matchers to accept move-only containers.
PiperOrigin-RevId: 225667441
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Replace pump'd code for DoAll with variadic templates.
PiperOrigin-RevId: 225584656
|
|\ \ \
| | | |
| | | |
| | | | |
PiperOrigin-RevId: 225552792
|
| | | | |
|
| | | |
| | | |
| | | | |
Removed global chmod +x for Travis scripts in favor of just applying it to PlatformIO builds.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Added initial library.json config for PlatformIO
Version will be synced to proper googletest version once the PIO library has been registered and proven out round trip.
|
| | |/
| |/| |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Support skipped in XML and JSON output
PiperOrigin-RevId: 225386540
|
| | |
| | |
| | |
| | |
| | |
| | | |
Internal Change
PiperOrigin-RevId: 225231727
|
| | |
| | |
| | | |
point build badge back to proper repo path
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The gmock matchers have a concept of MatchAndExpain; where the details of the
matching are written to a "result listener". A matcher can avoid creating
expensive debug info by checking result_listener->IsInterested(); but,
unfortunately, the default matcher code (called from EXPECT_THAT) is always
"interested".
This change implements EXPECT_THAT matching to first run the matcher in a "not
interested" mode; and then run it a second time ("interested") only if the
match fails.
PiperOrigin-RevId: 225036073
|
|\ \ \
| | | |
| | | | |
Cache gcc and clang APT packages
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
rollback of 224929783
PiperOrigin-RevId: 225008559
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The gmock matchers have a concept of MatchAndExpain; where the details of the
matching are written to a "result listener". A matcher can avoid creating
expensive debug info by checking result_listener->IsInterested(); but,
unfortunately, the default matcher code (called from EXPECT_THAT) is always
"interested".
This change implements EXPECT_THAT matching to first run the matcher in a "not
interested" mode; and then run it a second time ("interested") only if the
match fails.
PiperOrigin-RevId: 224929783
|
|\ \ \
| |/ /
|/| |
| | | |
PiperOrigin-RevId: 224054240
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fixed typo
|
| | | | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | | |
Deduce SizeType for SizeIs() from the return value of the size() member function
PiperOrigin-RevId: 223835674
|
| | |
| | |
| | |
| | |
| | |
| | | |
Fix bazel issue
PiperOrigin-RevId: 223829127
|
| | |
| | |
| | | |
Need this for bazel change
|
| | | |
|