diff options
author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-02 20:55:49 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-05-03 16:20:51 -0400 |
commit | b80d40c287789ec0cb430842923a0254c86a6150 (patch) | |
tree | 1959e740245042340aff6d6ea96f80d8a75c95f1 /docs/markdown/Unit-tests.md | |
parent | 492e281c0e5a4ff01e15af220bff21acaaa7f90d (diff) | |
download | meson-b80d40c287789ec0cb430842923a0254c86a6150.zip meson-b80d40c287789ec0cb430842923a0254c86a6150.tar.gz meson-b80d40c287789ec0cb430842923a0254c86a6150.tar.bz2 |
doc: Capitalize things more consistently.
Upper or lower case depending on the official spelling, or the more
consistent usage.
Diffstat (limited to 'docs/markdown/Unit-tests.md')
-rw-r--r-- | docs/markdown/Unit-tests.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/markdown/Unit-tests.md b/docs/markdown/Unit-tests.md index 83c3712..50f59ec 100644 --- a/docs/markdown/Unit-tests.md +++ b/docs/markdown/Unit-tests.md @@ -37,7 +37,7 @@ The the output of these commands is written to the log directory `meson-logs` in Parallelism -- -To reduce test times, Meson will by default run multiple unit tests in parallel. It is common to have some tests which can not be run in parallel because they require unique hold on some resource such as a file or a dbus name. You have to specify these tests with a keyword argument. +To reduce test times, Meson will by default run multiple unit tests in parallel. It is common to have some tests which can not be run in parallel because they require unique hold on some resource such as a file or a D-Bus name. You have to specify these tests with a keyword argument. ```meson test('unique test', t, is_parallel : false) @@ -89,13 +89,13 @@ Arguments to the wrapper binary can be given like this: $ mesontest --wrap='valgrind --tool=helgrind' testname ``` -Meson also supports running the tests under gdb. Just doing this: +Meson also supports running the tests under GDB. Just doing this: ```console $ mesontest --gdb testname ``` -Mesontest will launch gdb all set up to run the test. Just type `run` in the gdb command prompt to start the program. +Mesontest will launch `gdb` all set up to run the test. Just type `run` in the GDB command prompt to start the program. The second use case is a test that segfaults only rarely. In this case you can invoke the following command: @@ -103,6 +103,6 @@ The second use case is a test that segfaults only rarely. In this case you can i $ mesontest --gdb --repeat=10000 testname ``` -This runs the test up to 10 000 times under gdb automatically. If the program crashes, gdb will halt and the user can debug the application. Note that testing timeouts are disabled in this case so mesontest will not kill gdb while the developer is still debugging it. The downside is that if the test binary freezes, the test runner will wait forever. +This runs the test up to 10 000 times under GDB automatically. If the program crashes, GDB will halt and the user can debug the application. Note that testing timeouts are disabled in this case so mesontest will not kill `gdb` while the developer is still debugging it. The downside is that if the test binary freezes, the test runner will wait forever. For further information see the command line help of Mesontest by running `mesontest -h`. |