blob: bfdaed32332d8566468d67894e45dec3448a12f5 [file] [log] [blame] [view]
Ben Clayton5af571b2021-11-23 17:57:37 +00001# Generating and viewing Tint code-coverage
2
3Requirements:
4
5* Host running Linux or macOS
6* Clang toolchain on the `PATH` environment variable
7
8## Building Tint with coverage generation enabled
9
James Pricefe0c2a72023-01-04 18:06:49 +000010Follow the steps [to build Tint with CMake](../README.md), but include the additional `-DDAWN_EMIT_COVERAGE=1` CMake flag.
Ben Clayton5af571b2021-11-23 17:57:37 +000011
12## Generate coverage information
13
14Use the `<tint>/tools/tint-generate-coverage` script to run the tint executable or unit tests and generate the coverage information.
15
16The script takes the executable to invoke as the first command line argument, followed by additional arguments to pass to the executable.
17
18For example, to see the code coverage for all unit tests, run:
19`<tint>/tools/tint-generate-coverage <build>/tint_unittests --gtest_brief`
20
21The script will emit two files at the root of the tint directory:
22
23* `coverage.summary` - A text file giving a coverage summary for all Tint source files.
24* `lcov.info` - A binary coverage file that can be consumed with the [VSCode Coverage Gutters](https://marketplace.visualstudio.com/items?itemName=ryanluker.vscode-coverage-gutters) extension.