aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix: Correct *_main.cc pathsChris2019-01-031-2/+2
|
* fix: Remove Arduino entry pointsChris2019-01-035-228/+188
| | | | | | Improved flexibility by removing the Arduino entry points in favor of manual calls to setup/loop that the user can call from their entry point. This is the more common use case for Arudino. Also added the gtest/gmock_main files to the PlatformIO ignore list since we are not supporting that feature.
* Merge branch 'chore/fix_library_json' of ↵Chris2018-12-290-0/+0
|\ | | | | | | https://github.com/ciband/googletest into chore/fix_library_json
| * fix: Correct GitHub pathsChris Johnson2018-12-211-2/+2
| |
* | fix: Add additional source and include directories.Chris2018-12-291-34/+38
|/ | | | This is still a work in progress.
* chore: Add .vs to .gitignore for Visual StudioChris2018-12-151-0/+1
|
* fix: correct JSON syntaxChris2018-12-151-1/+1
|
* Merge pull request #2000 from ciband:feat/add_support_platformioGennadiy Civil2018-12-148-18/+134
|\ | | | | | | PiperOrigin-RevId: 225552792
| * chore: Update version to latest releaseChris Johnson2018-12-071-1/+1
| |
| * fix: Remove global chmod from TravisChris Johnson2018-12-061-3/+1
| | | | | | Removed global chmod +x for Travis scripts in favor of just applying it to PlatformIO builds.
| * chore: Add initial library.json configChris Johnson2018-12-061-0/+51
| | | | | | | | | | 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.
| * feat: Add initial support for PlatformIO and ArduinoChris Johnson2018-12-046-0/+77
| |
* | Googletest exportAbseil Team2018-12-134-10/+38
| | | | | | | | | | | | Support skipped in XML and JSON output PiperOrigin-RevId: 225386540
* | Googletest exportmisterg2018-12-1315-19/+19
| | | | | | | | | | | | Internal Change PiperOrigin-RevId: 225231727
* | Update README.mdGennadiy Civil2018-12-131-1/+1
| | | | | | point build badge back to proper repo path
* | Googletest exportAbseil Team2018-12-122-7/+100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge pull request #2004 from cotsog/patch-1Gennadiy Civil2018-12-121-3/+16
|\ \ | | | | | | Cache gcc and clang APT packages
| * | Use if statementsDominic Jodoin2018-12-121-2/+2
| | |
| * | Don't cache APT packages on OS X/macOSDominic Jodoin2018-12-111-3/+3
| | |
| * | Change directory ownership earlierDominic Jodoin2018-12-111-3/+1
| | |
| * | Cache gcc and clang APT packagesDominic Jodoin2018-12-101-3/+18
| | |
* | | Googletest exportmisterg2018-12-112-96/+7
| | | | | | | | | | | | | | | | | | rollback of 224929783 PiperOrigin-RevId: 225008559
* | | Googletest exportAbseil Team2018-12-112-7/+96
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge pull request #1997 from gpakosz:GTEST_IS_THREADSAFEGennadiy Civil2018-12-052-6/+10
|\ \ | |/ |/| | | PiperOrigin-RevId: 224054240
| * Do not define GTEST_IS_THREADSAFE within GTEST_HAS_SEHGregory Pakosz2018-12-041-5/+9
| |
* | Merge pull request #1995 from siddhanjay/patch-1Gennadiy Civil2018-12-041-1/+1
|\ \ | | | | | | Fixed typo
| * | Fixed typoSiddhanjay Godre2018-12-041-1/+1
| | |
* | | Googletest exportAbseil Team2018-12-042-3/+12
| |/ |/| | | | | | | | | Deduce SizeType for SizeIs() from the return value of the size() member function PiperOrigin-RevId: 223835674
* | Googletest exportmisterg2018-12-031-2/+0
| | | | | | | | | | | | Fix bazel issue PiperOrigin-RevId: 223829127
* | Update WORKSPACEGennadiy Civil2018-12-031-0/+2
| | | | | | Need this for bazel change
* | Update README.mdGennadiy Civil2018-12-031-1/+1
| |
* | Update README.mdGennadiy Civil2018-12-031-1/+1
| | | | | | Fix build icon location
* | Googletest exportmisterg2018-12-031-0/+2
| | | | | | | | | | | | Fix bazel issue PiperOrigin-RevId: 223823930
* | Googletest exportAbseil Team2018-12-0351-555/+507
| | | | | | | | | | | | Applied fixes for ClangTidy modernize-use-override and modernize-use-using. PiperOrigin-RevId: 223800219
* | Googletest exportAbseil Team2018-12-035-655/+233
|/ | | | | | Replace pump'd Args() matcher with variadic templates. PiperOrigin-RevId: 223794430
* Googletest exportdurandal2018-11-281-23/+11
| | | | | Fix: remove two added testcases that depend on gmock; I'll put them back later in a way that doesn't break the build. PiperOrigin-RevId: 223227562
* Googletest exportdurandal2018-11-285-249/+335
| | | | | | Accept gmock matchers in EXPECT_EXIT and friends to allow matches other than simple regex matches on death output. PiperOrigin-RevId: 223035409
* Merge pull request #1977 from lukasm91:issue_1955_remove_pthread_flagsGennadiy Civil2018-11-262-3/+3
|\ | | | | | | PiperOrigin-RevId: 222861732
| * Issue #1955: Remove THREADS_PREFER_PTHREAD_FLAGLukas Mosimann2018-11-221-1/+0
| |
* | Googletest exportmisterg2018-11-261-76/+0
| | | | | | | | | | | | Internal Change PiperOrigin-RevId: 222412033
* | Update .travis.ymlGennadiy Civil2018-11-261-14/+0
| |
* | Update .travis.ymlGennadiy Civil2018-11-261-31/+16
| |
* | Update .travis.ymlGennadiy Civil2018-11-261-0/+2
| |
* | Update .travis.ymlGennadiy Civil2018-11-261-0/+26
| |
* | Create CODE_OF_CONDUCT.mdGennadiy Civil2018-11-261-0/+76
|/
* Update build badgeGennadiy Civil2018-11-201-1/+1
|
* Googletest exportmisterg2018-11-201-2/+2
| | | | | | Fix broken OSS build PiperOrigin-RevId: 222244158
* Googletest exportAbseil Team2018-11-201-5/+7
| | | | | | Remove unintended dependency. PiperOrigin-RevId: 222243874
* Googletest exportAbseil Team2018-11-201-2/+0
| | | | | | Remove redundant Base/Derived types. PiperOrigin-RevId: 222243634
* Googletest exportmisterg2018-11-201-0/+10
| | | | | | Silence C4100 msvc warning PiperOrigin-RevId: 222242329