您好,登錄后才能下訂單哦!
在Ubuntu系統中,你可以使用多種C編譯器和代碼測試覆蓋率工具
在Ubuntu中,你可以使用以下命令安裝GCC編譯器(以GCC 10為例):
sudo apt update
sudo apt install g++ build-essential
Ubuntu提供了gcov
和lcov
等工具來計算代碼覆蓋率。首先,安裝gcov
:
sudo apt install gcc-10-gcov
接下來,安裝lcov
和genhtml
:
sudo apt install lcov genhtml
創建一個名為example.c
的文件,其中包含以下內容:
#include <stdio.h>
int main() {
int a = 1;
int b = 2;
int c = a + b;
printf("The sum of %d and %d is %d\n", a, b, c);
return 0;
}
使用GCC編譯器編譯上述C程序,并使用-fprofile-arcs
和-ftest-coverage
選項生成覆蓋率信息:
gcc-10 -fprofile-arcs -ftest-coverage -o example example.c
運行編譯后的程序:
./example
接下來,使用lcov
生成覆蓋率報告:
lcov --capture --directory . --output-file coverage.info
最后,使用genhtml
將覆蓋率報告轉換為HTML格式:
genhtml coverage.info --output-directory coverage_report
現在,你可以在coverage_report
目錄下找到生成的覆蓋率報告。打開index.html
文件,查看代碼覆蓋率結果。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。