diff options
author | Ebrahim Byagowi <ebrahim@gnu.org> | 2020-06-02 22:09:18 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 20:39:18 +0300 |
commit | 647f19b5aa977e63933bb19b77be97f2a9349934 (patch) | |
tree | 77db0d34dea63a196e839d6b7412ce41f0990611 | |
parent | fcbff1de7c2c65708fc8d0079074177b3fa7e800 (diff) | |
download | meson-647f19b5aa977e63933bb19b77be97f2a9349934.zip meson-647f19b5aa977e63933bb19b77be97f2a9349934.tar.gz meson-647f19b5aa977e63933bb19b77be97f2a9349934.tar.bz2 |
docs/unit-tests: Show a test can have multiple suites [skip ci]
-rw-r--r-- | docs/markdown/Unit-tests.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Unit-tests.md b/docs/markdown/Unit-tests.md index bd91dbb..06664db6 100644 --- a/docs/markdown/Unit-tests.md +++ b/docs/markdown/Unit-tests.md @@ -136,7 +136,7 @@ For clarity, consider the meson.build containing: ```meson test('A', ..., suite: 'foo') -test('B', ..., suite: 'foo') +test('B', ..., suite: ['foo', 'bar']) test('C', ..., suite: 'bar') test('D', ..., suite: 'baz') |