aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2023-08-29 15:13:35 -0700
committerGitHub <noreply@github.com>2023-08-29 22:13:35 +0000
commit46478b44ffb477387235b3c597c24178845fb2a3 (patch)
tree0444eabc3f7fee5455b783d37a26e75e941bf977 /doc
parent5b5f56a9d487274c1498aa4852bcf80b44c7acd0 (diff)
docs/testing: point out the existence of `GTEST_FILTER` (#8883)
Diffstat (limited to 'doc')
-rw-r--r--doc/manual/src/contributing/testing.md3
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