diff options
author | Cole Helbling <cole.e.helbling@outlook.com> | 2023-08-29 15:13:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 22:13:35 +0000 |
commit | 46478b44ffb477387235b3c597c24178845fb2a3 (patch) | |
tree | 0444eabc3f7fee5455b783d37a26e75e941bf977 | |
parent | 5b5f56a9d487274c1498aa4852bcf80b44c7acd0 (diff) |
docs/testing: point out the existence of `GTEST_FILTER` (#8883)
-rw-r--r-- | doc/manual/src/contributing/testing.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/manual/src/contributing/testing.md b/doc/manual/src/contributing/testing.md index c3c82e3c0..cd94d5cfb 100644 --- a/doc/manual/src/contributing/testing.md +++ b/doc/manual/src/contributing/testing.md @@ -7,7 +7,8 @@ under `src/{library_name}/tests` using the [googletest](https://google.github.io/googletest/) and [rapidcheck](https://github.com/emil-e/rapidcheck) frameworks. -You can run the whole testsuite with `make check`, or the tests for a specific component with `make libfoo-tests_RUN`. Finer-grained filtering is also possible using the [--gtest_filter](https://google.github.io/googletest/advanced.html#running-a-subset-of-the-tests) command-line option. +You can run the whole testsuite with `make check`, or the tests for a specific component with `make libfoo-tests_RUN`. +Finer-grained filtering is also possible using the [--gtest_filter](https://google.github.io/googletest/advanced.html#running-a-subset-of-the-tests) command-line option, or the `GTEST_FILTER` environment variable. ## Functional tests |