aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-02-07 12:03:10 +0000
committerGitHub <noreply@github.com>2021-02-07 12:03:10 +0000
commit034b81a09f20902c2d8cb907e162c7e6cb48e8c1 (patch)
tree80a1b89ab632663ec056d4007d06ba65482f0ec1 /docs
parent8b82ffa9e423558d7644c7135db4114f59537829 (diff)
parentc7c2bc8db111a5be277aeb14aecfe0d28ab286a9 (diff)
downloadmeson-034b81a09f20902c2d8cb907e162c7e6cb48e8c1.zip
meson-034b81a09f20902c2d8cb907e162c7e6cb48e8c1.tar.gz
meson-034b81a09f20902c2d8cb907e162c7e6cb48e8c1.tar.bz2
Merge pull request #8288 from bonzini/test-setup-exclude-suites
introduce add_test_setup(exclude suites: ...) keyword argument
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Reference-manual.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md
index f623728..f12f695 100644
--- a/docs/markdown/Reference-manual.md
+++ b/docs/markdown/Reference-manual.md
@@ -125,6 +125,9 @@ the following:
- `is_default` *(since 0.49.0)*: a bool to set whether this is the default test setup.
If `true`, the setup will be used whenever `meson test` is run
without the `--setup` option.
+- `exclude_suites` *(since 0.57.0)*: a list of test suites that should be
+ excluded when using this setup. Suites specified in the `--suite` option
+ to `meson test` will always run, overriding `add_test_setup` if necessary.
To use the test setup, run `meson test --setup=*name*` inside the
build dir.