Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Incremental doc changes in preparation for doc sync | Gennadiy Civil | 2019-06-19 | 1 | -15/+21 | |
| | ||||||
* | Renaming doc files to make the file names more palatable and in preparation ↵ | Gennadiy Civil | 2019-06-19 | 2 | -4/+4 | |
| | | | | for including documentation in sync process | |||||
* | small docs restucture and cleanup | Gennadiy Civil | 2019-06-19 | 1 | -0/+0 | |
| | ||||||
* | small docs restucture and cleanup | Gennadiy Civil | 2019-06-19 | 1 | -0/+0 | |
| | ||||||
* | Merge pull request #2287 from PhilLab/patch-1 | Gennadiy Civil | 2019-06-17 | 1 | -11/+11 | |
|\ | | | | | docs/primer: Fixed usage of test case | |||||
| * | docs/primer: Fixed usage of test caserefs/pull/2287/head | Philipp Hasper | 2019-06-16 | 1 | -11/+11 | |
| | | | | | | | | According to the nomenclature, what was called a test case is actually a test suite | |||||
* | | Merge pull request #2286 from gennadiycivil/master | Gennadiy Civil | 2019-06-17 | 1 | -3/+3 | |
|\ \ | |/ |/| | Removing make and automake. | |||||
| * | doc is still valid | Gennadiy Civil | 2019-06-13 | 1 | -3/+52 | |
| | | ||||||
| * | Removing make and automake. The only supported build systems are Bazel ↵ | Gennadiy Civil | 2019-06-13 | 1 | -49/+0 | |
| | | | | | | | | internally and CMake community supported | |||||
* | | Documentation sync working on the documentation being included with the code | Gennadiy Civil | 2019-06-14 | 1 | -18/+15 | |
|/ | ||||||
* | removing obsolete language from docs, CMake and Bazel is the only supporeted ↵ | Gennadiy Civil | 2019-06-10 | 3 | -159/+66 | |
| | | | | build methods | |||||
* | Update advanced.md | Gennadiy Civil | 2019-05-17 | 1 | -0/+61 | |
| | | | Adding back section that was lost in merge | |||||
* | Handle GTEST_SKIP() when calling `Environment::SetUp()`refs/pull/2203/head | Enji Cooper | 2019-03-30 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gtest prior to this change would completely ignore `GTEST_SKIP()` if called in `Environment::SetUp()`, instead of bailing out early, unlike `Test::SetUp()`, which would cause the tests themselves to be skipped. The only way (prior to this change) to skip the tests would be to trigger a fatal error via `GTEST_FAIL()`. Desirable behavior, in this case, when dealing with `Environment::SetUp()` is to check for prerequisites on a system (example, kernel supports a particular featureset, e.g., capsicum), and skip the tests. The alternatives prior to this change would be undesirable: - Failing sends the wrong message to the test user, as the result of the tests is indeterminate, not failed. - Having to add per-test class abstractions that override `SetUp()` to test for the capsicum feature set, then skip all of the tests in their respective SetUp fixtures, would be a lot of human and computational work; checking for the feature would need to be done for all of the tests, instead of once for all of the tests. For those reasons, making `Environment::SetUp()` handle `GTEST_SKIP()`, by not executing the testcases, is the most desirable solution. In order to properly diagnose what happened when running the tests if they are skipped, print out the diagnostics in an ad hoc manner. Update the documentation to note this change and integrate a new test, gtest_skip_in_environment_setup_test, into the test suite. This change addresses #2189. Signed-off-by: Enji Cooper <yaneurabeya@gmail.com> | |||||
* | Update googletest/docs/advanced.mdrefs/pull/2193/head | Gennadiy Civil | 2019-03-21 | 1 | -1/+1 | |
| | | | Co-Authored-By: antismap <michael.thenault@gmail.com> | |||||
* | Note about INSTANTIATE_TEST_SUITE_P / INSTANTIATE_TEST_CASE_P keyword change | antismap | 2019-03-21 | 1 | -0/+2 | |
| | | | See https://github.com/google/googletest/issues/2065 | |||||
* | Fix grammatical error in primer.mdrefs/pull/2152/head | Ryan Sinnet | 2019-02-25 | 1 | -1/+1 | |
| | ||||||
* | Fix an invalid example of JSON report in advanced.mdrefs/pull/2103/head | Keiichi Watanabe | 2019-02-05 | 1 | -5/+4 | |
| | | | | | | | This is just a mistake in the document. Google Test doesn't output such an invalid JSON report. Signed-off-by: Keiichi Watanabe <keiichiw@chromium.org> | |||||
* | Repeat #2090 refs/pull/2091/head | Gennadiy Civil | 2019-01-30 | 1 | -1/+1 | |
| | | | Testing | |||||
* | Update docs, TestCase->TestSuite | Gennadiy Civil | 2019-01-03 | 3 | -108/+106 | |
| | ||||||
* | Update advanced.md | Gennadiy Civil | 2018-10-23 | 1 | -1/+1 | |
| | | | Fixes #1802 | |||||
* | Update primer.md | Gennadiy Civil | 2018-10-05 | 1 | -5/+2 | |
| | | | fixes #1709 | |||||
* | Fix doc linksrefs/pull/1809/head | Arkady Shapkin | 2018-09-04 | 4 | -5/+5 | |
| | ||||||
* | Merge pull request #1803 from KindDragon/patch-2 | Gennadiy Civil | 2018-09-04 | 2 | -5/+5 | |
|\ | | | | | Update documentation to syntax highlight code | |||||
| * | Update documentation to syntax highlight coderefs/pull/1803/head | Arkady Shapkin | 2018-09-03 | 2 | -5/+5 | |
| | | ||||||
* | | Fix #1805: add `.md` to hyperlinkrefs/pull/1806/head | Andrew Siplas | 2018-09-04 | 1 | -1/+1 | |
|/ | ||||||
* | Fix broken FAQ link in primer.mdrefs/pull/1794/head | Steven Santos Erenst | 2018-08-29 | 1 | -1/+1 | |
| | | | The current link pointed to a non existing section in the FAQ. | |||||
* | docs: fix more broken links to sections in Advanced guiderefs/pull/1754/head | Vadim Kotov | 2018-08-20 | 1 | -3/+3 | |
| | ||||||
* | docs: fixed broken references to sections in Advanced guide | Vadim Kotov | 2018-08-20 | 1 | -2/+2 | |
| | ||||||
* | std references shouldn't be fully qualifiedrefs/pull/1748/head | Vadim Berezniker | 2018-08-17 | 1 | -4/+4 | |
| | ||||||
* | - Fix the broken markdown tablerefs/pull/1731/head | Yi Zheng | 2018-08-13 | 1 | -55/+39 | |
| | | | | - Fix some format issue | |||||
* | docs: fix broken links | Wiktor Garbacz | 2018-08-09 | 2 | -4/+5 | |
| | ||||||
* | Updated broken and outdated URLs | Piotr Kąkol | 2018-07-25 | 4 | -18/+18 | |
| | ||||||
* | Update primer.mdrefs/pull/1678/head | Stian Valle | 2018-07-21 | 1 | -12/+6 | |
| | ||||||
* | Update primer.md | Stian Valle | 2018-07-21 | 1 | -12/+12 | |
| | ||||||
* | Update primer.md | Stian Valle | 2018-07-21 | 1 | -7/+7 | |
| | ||||||
* | Merge pull request #1667 from hckr/patch-1 | Gennadiy Civil | 2018-07-18 | 1 | -2/+2 | |
|\ | | | | | Fix broken links to FAQ in primer.md | |||||
| * | Fix broken links to FAQ in primer.mdrefs/pull/1667/head | Jakub Młokosiewicz | 2018-07-16 | 1 | -2/+2 | |
| | | ||||||
* | | Docs sync | Gennadiy Civil | 2018-07-17 | 3 | -1915/+1716 | |
|/ | ||||||
* | more formatting [skip ci]refs/pull/1656/head | Gennadiy Civil | 2018-07-11 | 1 | -17/+0 | |
| | ||||||
* | formatting, [ci skip] | Gennadiy Civil | 2018-07-11 | 1 | -1/+1 | |
| | ||||||
* | Fix heading | Gennadiy Civil | 2018-07-10 | 1 | -1/+1 | |
| | | | [skip ci] | |||||
* | Docs sync | Gennadiy Civil | 2018-07-10 | 2 | -313/+373 | |
| | | | [ci skip] | |||||
* | Docs sync/internalrefs/pull/1631/head | Gennadiy Civil | 2018-06-13 | 1 | -32/+32 | |
| | ||||||
* | Doc sync/internal | Gennadiy Civil | 2018-06-13 | 1 | -2/+2 | |
| | ||||||
* | Removed "Documentation.md" not adding value and not consitent with internal docsrefs/pull/1624/head | Gennadiy Civil | 2018-06-11 | 1 | -16/+0 | |
| | ||||||
* | Rename Samples.md to samples.md and adjust the links | Gennadiy Civil | 2018-06-11 | 3 | -2/+2 | |
| | ||||||
* | Rename FAQ.md to faq.md and adjust the links. | Gennadiy Civil | 2018-06-11 | 4 | -4/+4 | |
| | | | Part of documentation rationalization | |||||
* | Rename AdvancedGuide.md to advanced.md and adjust the links. | Gennadiy Civil | 2018-06-11 | 4 | -12/+12 | |
| | | | Part of documentation rationalization work | |||||
* | Rename "Primer.md" to "primer.md" and adjust links. Part of the documentaion ↵ | Gennadiy Civil | 2018-06-11 | 4 | -4/+4 | |
| | | | | rationalzation | |||||
* | Support JSON output format in addition to XML | Petr Hosek | 2018-02-28 | 1 | -0/+201 | |
| | | | | | | This change allows emitting output in JSON format in addition to the already supported XML format. The implementation as well as the file structure is intentionally modelled after the XML one. |