mirror of
https://github.com/curl/curl.git
synced 2026-05-17 16:36:21 +03:00
11 lines
313 B
Bash
Executable file
11 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
|