aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'chore/fix_library_json' of ↵Chris2019-01-0374-2815/+2280
|\ | | | | | | https://github.com/ciband/googletest into chore/fix_library_json
| * Merge branch 'master' into chore/fix_library_jsonChris Johnson2019-01-0374-2815/+2280
| |\
| | * Merge pull request #2042 from gennadiycivil/masterGennadiy Civil2019-01-033-108/+106
| | |\ | | | | | | | | Update Docs TestCase->TestSuite
| | | * Merge branch 'master' of https://github.com/google/googletestGennadiy Civil2019-01-0322-1119/+1502
| | | |\ | | | |/ | | |/|
| | * | Googletest exportmisterg2019-01-033-38/+48
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #1261 PiperOrigin-RevId: 227740670
| | * | Googletest exportmisterg2019-01-0320-1081/+1454
| | | | | | | | | | | | | | | | | | | | | | | | TestCase->TestSuite refactoring PiperOrigin-RevId: 227702164
| | | * Update docs, TestCase->TestSuiteGennadiy Civil2019-01-033-108/+106
| | |/
| | * Update README.mdGennadiy Civil2019-01-031-2/+2
| | |
| | * Update README.mdGennadiy Civil2019-01-031-1/+1
| | |
| | * Update README.mdGennadiy Civil2019-01-031-0/+4
| | |
| | * Merge pull request #2026 from justin6case/example_makefile_improvementsGennadiy Civil2019-01-032-13/+35
| | |\ | | | | | | | | Example/sample makefile improvements
| | | * Improvements have been made to the example/sample makefiles for both googlemockCase, Matt2018-12-202-13/+35
| | | | | | | | | | | | | | | | | | | | | | | | and googletest. Library files are now created and named like versions produced by Cmake.
| | * | Merge pull request #2037 from ciband:chore/fix_library_jsonGennadiy Civil2019-01-027-33/+1755
| | |\ \ | | | | | | | | | | | | | | | PiperOrigin-RevId: 227615222
| | * | | Googletest exportmisterg2019-01-0229-108/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Internal Change PiperOrigin-RevId: 227575279
| | * | | Googletest exportAbseil Team2019-01-0225-345/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the #ifs for old, unsupported and buggy compilers: * old versions of GCC & MSVC * Symbian PiperOrigin-RevId: 227116941
| | * | | Merge pull request #2039 from gennadiycivil/masterGennadiy Civil2019-01-024-1706/+0
| | |\ \ \ | | | | | | | | | | | | Remove outdated scripts
| | | * | | Remove outdated scriptsGennadiy Civil2019-01-024-1706/+0
| | | | | |
| | | * | | Revert "test, please ignore"Gennadiy Civil2019-01-021-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 4665eee10a1d495aec9970fddf6231cf2339b1b7.
| | | * | | Merge branch 'master' of https://github.com/google/googletestGennadiy Civil2019-01-02143-14463/+6941
| | | |\ \ \ | | | |/ / / | | |/| | |
| | * | | | Merge pull request #2035 from syohex/update-xcode-project-fileGennadiy Civil2018-12-281-12/+0
| | |\ \ \ \ | | | | | | | | | | | | | | Update Xcode project file
| | | * | | | Update Xcode project fileSyohei YOSHIDA2018-12-281-12/+0
| | |/ / / / | | | | | | | | | | | | | | | | | | Remove files which no longer exist.
| | * | | | Merge #2002Ryohei Machida2018-12-272-22/+15
| | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 227030722
| | * | | | Update README.mdGennadiy Civil2018-12-271-1/+1
| | | | | |
| | * | | | Merge pull request #2027 from ciband:chore/fix_library_jsonGennadiy Civil2018-12-272-3/+3
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 227028806
| | * | | | | Update README.mdGennadiy Civil2018-12-211-1/+1
| | | | | | |
| | * | | | | Merge pull request #2013 from ciband:chore/fix_library_jsonGennadiy Civil2018-12-213-2/+59
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | PiperOrigin-RevId: 226493373
| | * | | | | | Googletest exportAbseil Team2018-12-215-169/+6
| | | |_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get rid of code generation for NiceMock / StrictMock. They got small enough that it doesn't make sense to generate them. PiperOrigin-RevId: 226455689
| | * | | | | Googletest exportAbseil Team2018-12-204-5/+249
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add public entry point testing::RegisterTest. PiperOrigin-RevId: 226350937
| | * | | | | Googletest exportAbseil Team2018-12-201-56/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | * | | | | Googletest exportAbseil Team2018-12-2017-654/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unifdef c++11-related macros from googletest now that it requires C++11. PiperOrigin-RevId: 225905601
| | * | | | | Googletest exportmisterg2018-12-171-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Suppress C4503 for MCVS , again PiperOrigin-RevId: 225895719
| | * | | | | Googletest exportmisterg2018-12-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Suppress C4503 for MCVS PiperOrigin-RevId: 225871050
| | * | | | | Update README.mdGennadiy Civil2018-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | Update build badge to point to the correct location
| | * | | | | Googletest exportmisterg2018-12-171-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Internal Change PiperOrigin-RevId: 225849972
| | * | | | | Googletest exportAbseil Team2018-12-172-46/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove GTEST_REFERENCE_TO_CONST_ usage from GMock. In C++11, it's redundant. PiperOrigin-RevId: 225719210
| | * | | | | Googletest exportAbseil Team2018-12-172-16/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow container matchers to accept move-only containers. PiperOrigin-RevId: 225667441
| | * | | | | Googletest exportAbseil Team2018-12-173-165/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace pump'd code for DoAll with variadic templates. PiperOrigin-RevId: 225584656
| | | | | * | test, please ignoreGennadiy Civil2018-10-091-0/+1
| | | | | | |
* | | | | | | chore: Add Windows cmake files to .gitignoreChris2019-01-031-0/+26
| | | | | | |
* | | | | | | chore: Alphabetize exclude directories.Chris2019-01-031-3/+3
|/ / / / / /
* | | | | | 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.