mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
doc: notes on running tests, benchmarks, tools
PR-URL: https://github.com/libuv/libuv/pull/1971 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
parent
89a9ea672b
commit
c0c672e1a0
54
README.md
54
README.md
@ -310,14 +310,66 @@ $ ninja -C out/Release
|
||||
|
||||
### Running tests
|
||||
|
||||
Run:
|
||||
#### Build
|
||||
|
||||
Build (includes tests):
|
||||
|
||||
```bash
|
||||
$ ./gyp_uv.py -f make
|
||||
$ make -C out
|
||||
```
|
||||
|
||||
#### Run all tests
|
||||
|
||||
```bash
|
||||
$ ./out/Debug/run-tests
|
||||
```
|
||||
|
||||
#### Run one test
|
||||
|
||||
The list of all tests is in `test/test-list.h`.
|
||||
|
||||
This invocation will cause the `run-tests` driver to fork and execute `TEST_NAME` in a child process:
|
||||
|
||||
```bash
|
||||
$ ./out/Debug/run-tests TEST_NAME
|
||||
```
|
||||
|
||||
This invocation will cause the `run-tests` driver to execute the test within the `run-tests` process:
|
||||
|
||||
```bash
|
||||
$ ./out/Debug/run-tests TEST_NAME TEST_NAME
|
||||
```
|
||||
|
||||
#### Debugging tools
|
||||
|
||||
When running the test from within the `run-tests` process (`run-tests TEST_NAME TEST_NAME`), tools like gdb and valgrind work normally.
|
||||
When running the test from a child of the `run-tests` process (`run-tests TEST_NAME`), use these tools in a fork-aware manner.
|
||||
|
||||
##### Fork-aware gdb
|
||||
|
||||
Use the [follow-fork-mode](https://sourceware.org/gdb/onlinedocs/gdb/Forks.html) setting:
|
||||
|
||||
```
|
||||
$ gdb --args out/Debug/run-tests TEST_NAME
|
||||
|
||||
(gdb) set follow-fork-mode child
|
||||
...
|
||||
```
|
||||
|
||||
##### Fork-aware valgrind
|
||||
|
||||
Use the `--trace-children=yes` parameter:
|
||||
|
||||
```bash
|
||||
$ valgrind --trace-children=yes -v --tool=memcheck --leak-check=full --track-origins=yes --leak-resolution=high --show-reachable=yes --log-file=memcheck.log out/Debug/run-tests TEST_NAME
|
||||
```
|
||||
|
||||
### Running benchmarks
|
||||
|
||||
See the section on running tests.
|
||||
The benchmark driver is `out/Debug/run-benchmarks` and the benchmarks are listed in `test/benchmark-list.h`.
|
||||
|
||||
## Supported Platforms
|
||||
|
||||
Check the [SUPPORTED_PLATFORMS file](SUPPORTED_PLATFORMS.md).
|
||||
|
Loading…
x
Reference in New Issue
Block a user