mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
f6e0f4556e
Closes #1528
12 lines
313 B
Bash
Executable File
12 lines
313 B
Bash
Executable File
#!/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
|