mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:21:41 +03:00
parent
efc7c1d86f
commit
f6e0f4556e
7 changed files with 246 additions and 7 deletions
11
scripts/coverage.sh
Executable file
11
scripts/coverage.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
./buildconf
|
||||
mkdir -p cvr
|
||||
cd cvr
|
||||
../configure --disable-shared --enable-debug --enable-maintainer-mode --enable-code-coverage
|
||||
make -sj
|
||||
make TFLAGS=-n test-nonflaky
|
||||
lcov -d . -c -o cov.lcov
|
||||
genhtml cov.lcov --output-directory coverage --title "curl code coverage"
|
||||
tar -cjf curl-coverage.tar.bz2 coverage
|
||||
Loading…
Add table
Add a link
Reference in a new issue