1 Star 0 Fork 0

欧流全/libinjection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
run-gcov-unittests.sh 570 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nick Galbreath 提交于 2016-01-05 18:17 . Switch from /bin/bash to /bin/sh
#!/bin/sh
#
# Code coverage for data only (not unit tests)
#
./autogen.sh
./configure-gcov.sh
make
cd src
make testdriver
rm -f libinjection.info
rm -rf lcov-html
mkdir lcov-html
lcov -b . --directory . --zerocounters
libtool --mode=execute ./testdriver ../tests/test-*.txt
lcov -b . --directory . --capture --output-file libinjection.info
lcov -b . --directory . --remove libinjection.info '/usr/include*' -o libinjection.info
lcov -b . --directory . --remove libinjection.info 'testdriver' -o libinjection.info
genhtml --branch-coverage -o lcov-html libinjection.info
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/freeasm/libinjection.git
git@gitee.com:freeasm/libinjection.git
freeasm
libinjection
libinjection
master

搜索帮助