diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-21 16:26:02 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-21 16:29:17 -0400 |
commit | b72a5668c2cecde6e88142eeb8c2227c7305bf9a (patch) | |
tree | fa693c6ef87845c8c916b49809d2b5e0f20a2845 | |
parent | 87b4b0d4e70b0188af58dfb66fe2fb4f1b54ba38 (diff) | |
download | meson-b72a5668c2cecde6e88142eeb8c2227c7305bf9a.zip meson-b72a5668c2cecde6e88142eeb8c2227c7305bf9a.tar.gz meson-b72a5668c2cecde6e88142eeb8c2227c7305bf9a.tar.bz2 |
docs: remove incorrect information about nonexisting kwarg
-rw-r--r-- | docs/markdown/Unit-tests.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Unit-tests.md b/docs/markdown/Unit-tests.md index 80f0dc1..f798d67 100644 --- a/docs/markdown/Unit-tests.md +++ b/docs/markdown/Unit-tests.md @@ -238,9 +238,9 @@ the like. In the test case options, the `timeout` option is specified in a number of seconds. -To disable timeout in test cases, add `timeout: 0` or negative value to allow infinite duration for test case to completes. Alternatively, `timeout_multiplier: 0` accomplish the same functionality as `timeout: 0`. +To disable timeout in test cases, add `timeout: 0` or negative value to allow infinite duration for test case to completes. -For running test, you can specify command line argument for overriding timeout as well by supplying `--timeout-multiplier 0` command line argument. +For running test, you can specify command line argument for overriding timeout as well by supplying `--timeout-multiplier 0` command line argument. For further information see the command line help of Meson by running `meson test -h`. |