Skip to content

Commit a8473fe

Browse files
committed
minor error in coverage docs
1 parent 4d185a6 commit a8473fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ To generate and view coverage reports for the C tests locally:
832832
Compile with coverage enabled:
833833
```bash
834834
cd c
835-
meson build -D b_coverage=true
835+
meson setup build -D b_coverage=true
836836
ninja -C build
837837
```
838838

@@ -853,7 +853,7 @@ Lines prefixed with `#####` were never executed, lines with numbers show executi
853853
`lcov` can be used to create browsable HTML coverage reports:
854854
```bash
855855
sudo apt-get install lcov # if needed
856-
lcov --capture --directory build-gcc --output-file coverage.info
856+
lcov --capture --directory build --output-file coverage.info
857857
genhtml coverage.info --output-directory coverage_html
858858
firefox coverage_html/index.html
859859
```

0 commit comments

Comments
 (0)