diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-09 13:24:27 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-09 13:24:27 +0100 |
commit | ee56ebd4cf1ca1ef04f1f8c36431ebb54447cc46 (patch) | |
tree | c15bbd0f6524064569690b4436b5d91f3feeafd4 /contributing.md | |
parent | a4d76993e51ac4486fc313e868285eb7b4cb89f2 (diff) | |
parent | 4d74c80d9c3c9fdca9b07d960a1f9fd3e38cdfad (diff) |
Merge remote-tracking branch 'origin/master' into max/AI
Diffstat (limited to 'contributing.md')
-rw-r--r-- | contributing.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contributing.md b/contributing.md index 7dedaa7..0faed2b 100644 --- a/contributing.md +++ b/contributing.md @@ -855,6 +855,11 @@ that you can click on to open them. parameter of `TEST()` / `TEST_F()` macro) - Test source files match their suite name (or test fixture name in the case of tests that use a fixture) +- Tests that measure time or use delays must be [disabled][gtest-disable] (by + prepending `DISABLED_` to the suite or case name). + + These tests will still be compiled, but will only run when the `test_main` + binary is run with the `--gtest_also_run_disabled_tests` flag. # Structure @@ -1017,3 +1022,5 @@ points should be kept in mind: - When adding new libraries, please update the library version table in [readme\.md](./readme.md) +[gtest-disable]: https://google.github.io/googletest/advanced.html#temporarily-disabling-tests + |