summary refs log tree commit diff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 215298e1..d755ef74 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -256,14 +256,13 @@ maintained by the upstream maintainers. There you find builds of latest `main` a
 Unit Tests
 ----------
 
-We have plenty of unit tests. Run them with `make check` or
-`meson test -C build`.
+We have plenty of unit tests. Run them with `meson test -C build`.
 
 Note that some files in the source tree are both generated and commited
 to git. That means, certain changes to the code also affect these generated
 files. The unit test fail in that case, to indicate that the generated
 files no longer match what is commited to git.
-You can also automatically regenerate the files by running `NM_TEST_REGENERATE=1 make check`.
+You can also automatically regenerate the files by running `NM_TEST_REGENERATE=1 meson test`.
 Note that test-client requires working translation.
 See the [comment](src/tests/client/test-client.py#L14)
 for how to configure it.
@@ -416,7 +415,7 @@ have `-I. -I./src/` in their build arguments. So to include a header like
 [`src/libnm-glib-aux/nm-random-utils.h`](src/libnm-glib-aux/nm-random-utils.h)
 you'd do `#include "libnm-glib-aux/nm-random-utils.h"`.
 
-Note that there are exceptions. For example, `src/libnm-std-aux/nm-linux-compat.h`](src/libnm-std-aux/nm-linux-compat.h)
+Note that there are exceptions. For example, [`src/libnm-std-aux/nm-linux-compat.h`](src/libnm-std-aux/nm-linux-compat.h)
 may need to be included before system headers as it is supposed to include headers
 from `src/linux-headers`](src/linux-headers).