[docs] Reorder TESTING.md sections
And use --reconfigure where makes sense
This commit is contained in:
parent
1e48225ca3
commit
99b8a84cc5
68
TESTING.md
68
TESTING.md
|
@ -1,36 +1,3 @@
|
||||||
## Build & Run
|
|
||||||
|
|
||||||
Depending on what area you are working in change or add `HB_DEBUG_<whatever>`.
|
|
||||||
Values defined in `hb-debug.hh`.
|
|
||||||
|
|
||||||
```shell
|
|
||||||
CPPFLAGS='-DHB_DEBUG_SUBSET=100' meson setup build
|
|
||||||
meson test -C build
|
|
||||||
```
|
|
||||||
|
|
||||||
### Run tests with asan
|
|
||||||
|
|
||||||
```shell
|
|
||||||
meson setup build -Db_sanitize=address
|
|
||||||
meson compile -C build
|
|
||||||
meson test -C build
|
|
||||||
```
|
|
||||||
|
|
||||||
### Debug with GDB
|
|
||||||
|
|
||||||
```
|
|
||||||
meson setup build
|
|
||||||
meson compile -C build
|
|
||||||
meson test -C build --gdb testname
|
|
||||||
```
|
|
||||||
|
|
||||||
### Enable Debug Logging
|
|
||||||
|
|
||||||
```shell
|
|
||||||
CPPFLAGS=-DHB_DEBUG_SUBSET=100 meson build
|
|
||||||
ninja -C build
|
|
||||||
```
|
|
||||||
|
|
||||||
## Build and Test
|
## Build and Test
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
|
@ -39,10 +6,41 @@ ninja -Cbuild
|
||||||
meson test -Cbuild
|
meson test -Cbuild
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Debug with GDB
|
||||||
|
|
||||||
|
```shell
|
||||||
|
meson test -Cbuild --gdb testname
|
||||||
|
```
|
||||||
|
|
||||||
|
## Build and Run
|
||||||
|
|
||||||
|
Depending on what area you are working in change or add `HB_DEBUG_<whatever>`.
|
||||||
|
Values defined in `hb-debug.hh`.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
CPPFLAGS='-DHB_DEBUG_SUBSET=100' meson setup build --reconfigure
|
||||||
|
meson test -C build
|
||||||
|
```
|
||||||
|
|
||||||
|
### Run tests with asan
|
||||||
|
|
||||||
|
```shell
|
||||||
|
meson setup build -Db_sanitize=address --reconfigure
|
||||||
|
meson compile -C build
|
||||||
|
meson test -C build
|
||||||
|
```
|
||||||
|
|
||||||
|
### Enable Debug Logging
|
||||||
|
|
||||||
|
```shell
|
||||||
|
CPPFLAGS=-DHB_DEBUG_SUBSET=100 meson build --reconfigure
|
||||||
|
ninja -C build
|
||||||
|
```
|
||||||
|
|
||||||
## Test with the Fuzzer
|
## Test with the Fuzzer
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
CXXFLAGS="-fsanitize=address,fuzzer-no-link" meson build --default-library=static -Dfuzzer_ldflags="-fsanitize=address,fuzzer" -Dexperimental_api=true
|
CXXFLAGS="-fsanitize=address,fuzzer-no-link" meson build --default-library=static -Dfuzzer_ldflags="-fsanitize=address,fuzzer" -Dexperimental_api=true --reconfigure
|
||||||
ninja -C build test/fuzzing/hb-{shape,draw,subset,set}-fuzzer
|
ninja -C build test/fuzzing/hb-{shape,draw,subset,set}-fuzzer
|
||||||
build/test/fuzzing/hb-subset-fuzzer
|
build/test/fuzzing/hb-subset-fuzzer
|
||||||
```
|
```
|
||||||
|
@ -50,7 +48,7 @@ build/test/fuzzing/hb-subset-fuzzer
|
||||||
## Profiling
|
## Profiling
|
||||||
|
|
||||||
```
|
```
|
||||||
meson build
|
meson build --reconfigure
|
||||||
meson compile -C build
|
meson compile -C build
|
||||||
build/perf/perf
|
build/perf/perf
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue