diff options
author | TheQwertiest <qwertiest@mail.ru> | 2020-06-30 18:32:27 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-06-30 23:52:31 +0300 |
commit | 83a973ca04cf53dd98ff487b4273155b82cf554a (patch) | |
tree | b060a4df04b2a3868c1df22db4daa62fc03aa6c3 /docs/markdown/Unit-tests.md | |
parent | 9e0db0a05ed146b48dc56cc95a6a85b99f93fc8a (diff) | |
download | meson-83a973ca04cf53dd98ff487b4273155b82cf554a.zip meson-83a973ca04cf53dd98ff487b4273155b82cf554a.tar.gz meson-83a973ca04cf53dd98ff487b4273155b82cf554a.tar.bz2 |
Replaced `ninja` with `meson` [skip ci]
Diffstat (limited to 'docs/markdown/Unit-tests.md')
-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 4f51d35..60fcad2 100644 --- a/docs/markdown/Unit-tests.md +++ b/docs/markdown/Unit-tests.md @@ -12,7 +12,7 @@ e = executable('prog', 'testprog.c') test('name of test', e) ``` -You can add as many tests as you want. They are run with the command `ninja +You can add as many tests as you want. They are run with the command `meson test`. Meson captures the output of all tests and writes it in the log file |