summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/test-setups.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-03-04 20:27:34 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-03-04 20:27:34 +0200
commitdaaae647d7f949fd44290c52c7e70098540726d8 (patch)
treec2ae1db93ebcf8ddc1de13d658c178cc765088da /docs/markdown/snippets/test-setups.md
parent06dadfc45f5066d0f3474ee7580784ce089552e4 (diff)
downloadmeson-daaae647d7f949fd44290c52c7e70098540726d8.tar.gz
Updated information for new release.
Diffstat (limited to 'docs/markdown/snippets/test-setups.md')
-rw-r--r--docs/markdown/snippets/test-setups.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/markdown/snippets/test-setups.md b/docs/markdown/snippets/test-setups.md
deleted file mode 100644
index 4598e7369..000000000
--- a/docs/markdown/snippets/test-setups.md
+++ /dev/null
@@ -1,16 +0,0 @@
-## Improve test setup selection
-
-Test setups are now identified (also) by the project they belong to and it
-is possible to select the used test setup from a specific project. E.g.
-to use a test setup `some_setup` from project `some_project` for all
-executed tests one can use
-
- meson test --setup some_project:some_setup
-
-Should one rather want test setups to be used from the same project as
-where the current test itself has been defined, one can use just
-
- meson test --setup some_setup
-
-In the latter case every (sub)project must have a test setup `some_setup`
-defined in it.