summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GoogleTest/GoogleTest-test3-stdout.txt
Commit message (Collapse)AuthorAgeFilesLines
* GoogleTest: Generalize test samplesEvgeniy Shcherbina2022-01-111-19/+19
| | | | | Replaced brittle (and irrelevant to the tests) parts of the sample outputs with generic regexps to ease making new test cases.
* GoogleTest: Fix regex matching all dots in the suite nameFrancesco Guastella2022-01-071-10/+19
|
* GoogleTest: Add TEST_FILTER arg to gtest_discover_testsAshish Sadanandan2021-08-051-0/+16
The `TEST_FILTER` argument can be used to filter tests during the discovery phase. It combines `--gtest_filter=<expr>` with the `--gtest_list_tests` argument when invoking the test excutable for listing defined tests. Fixes: #17493