| The PostgreSQL 9.0 Reference Manual - Volume 3 - Server Administration Guide
by The PostgreSQL Global Development Group Paperback (6"x9"), 274 pages ISBN 9781906966072 RRP £9.95 ($14.95) Sales of this book support the PostgreSQL project! Get a printed copy>>> |
16.4 Test Coverage Examination
The PostgreSQL source code can be compiled with coverage testing
instrumentation, so that it becomes possible to examine which
parts of the code are covered by the regression tests or any other
test suite that is run with the code. This is currently supported
when compiling with GCC and requires the gcov
and lcov programs.
A typical workflow would look like this:
./configure --enable-coverage ... OTHER OPTIONS ... gmake gmake check # or other test suite gmake coverage-html
Then point your HTML browser
to ‘coverage/index.html’.
The gmake commands also work in subdirectories.
To reset the execution counts between test runs, run:
gmake coverage-clean
| ISBN 9781906966072 | The PostgreSQL 9.0 Reference Manual - Volume 3 - Server Administration Guide | See the print edition |