我是 gcovr 的新手。我的代码中有 3 个文件,即 main.cpp、math.cpp 和 math.hpp。我使用以下命令用 g++ 编译它
g++ -fprofile-arcs -ftest-coverage -fPIC -O0 main.cpp math.cpp math.hpp -o math
我的代码已编译并成功运行。当我运行以下命令进行代码覆盖时
gcovr -r .
它产生这样的输出
------------------------------------------------------------------------------
GCC Code Coverage Report
Directory: .
------------------------------------------------------------------------------
File Lines Exec Cover Missing
------------------------------------------------------------------------------
main.cpp 6 6 100%
------------------------------------------------------------------------------
TOTAL 6 6 100%
------------------------------------------------------------------------------
它仅显示 main.cpp 的代码覆盖率。我也想知道其他文件的代码覆盖率。我怎样才能得到它?如果可以的话,请帮助我。在此先感谢。
这是我的代码 main.cpp
#include "math.hpp"
int main( int argc, char **argv)
{
Math m;
m.Multiply(20, 50);
m.Divide(40, 5);
}
数学.cpp
#include "math.hpp"
using namespace std;
int Math::Multiply(int Num1, int Num2){
Mul= Num1 * Num2;
std::cout << "Multiplication of "<<Num1<< " * " <<Num2<< " = "<< Mul<<endl;
return Mul;
}
int Math::Divide(int Num1, int Num2){
Div = Num1/Num2;
std::cout << "Division of "<<Num1<< " / " <<Num2 <<" = "<< Div<<endl;
return Div;
}
数学.hpp
#include <ctime>
#include<iostream>
class Math
{
int Num1;
int Num2;
int Fact, Mul, Div, Num, i;
public:
int Multiply(int Num1,int Num2);
int Divide(int Num1, int Num2);
};
运行命令 gcovr -v -r 时。下面给出
C:\Users\user\Desktop\Gcovr>gcovr -v -r .
Filters for --root: (1)
- <_sre.SRE_Pattern object at 0x01C206A0>
Filters for --filter: (1)
- DirectoryPrefixFilter(C\:\/Users\/user\/Desktop\/Gcovr\/)
Filters for --exclude: (0)
Filters for --gcov-filter: (1)
- AlwaysMatchFilter()
Filters for --gcov-exclude: (0)
Filters for --exclude-directories: (0)
Scanning directory . for gcda/gcno files...
Found 4 files (and will process 2)
Pool started with 1 threads
Processing file: C:\Users\user\Desktop\Gcovr\main.gcda
Running gcov: 'gcov C:\Users\user\Desktop\Gcovr\main.gcda --branch-counts --
branch-probabilities --preserve-paths --object-directory
C:\Users\user\Desktop\Gcovr' in 'c:\users\user\appdata\local\temp\tmpyekiry'
Running gcov: 'gcov C:\Users\user\Desktop\Gcovr\main.gcda --branch-counts --
branch-probabilities --preserve-paths --object-directory
C:\Users\user\Desktop\Gcovr' in 'C:\Users\user\Desktop\Gcovr'
Finding source file corresponding to a gcov data file
currdir C:\Users\user\Desktop\Gcovr
gcov_fname c:\users\user\appdata\local\temp\tmpyekiry\main.cpp.gcov
[u' -', u' 0', u'Source', u'main.cpp\n']
source_fname C:\Users\user\Desktop\Gcovr\main.gcda
root C:\Users\user\Desktop\Gcovr
fname C:\Users\user\Desktop\Gcovr\main.cpp
Parsing coverage data for file C:\Users\user\Desktop\Gcovr\main.cpp
uncovered: set([])
covered: {2: 1, 5: 1, 6: 1, 7: 4}
branches: {5: {1: 1, 2: 0}, 6: {1: 1, 2: 0}, 7: {1: 1, 2: 0, 3: 1, 4: 0}}
noncode: set([3])
Finding source file corresponding to a gcov data file
currdir C:\Users\user\Desktop\Gcovr
gcov_fnamec:\users\user\appdata\local\temp\tmpyekiry\c~#mingw#lib#gcc#mingw32#6.3.0#include#c++#iostream.gcov
[u' -', u' 0', u'Source',
u'c:/mingw/lib/gcc/mingw32/6.3.0/include/c++/iostream\n']
source_fname C:\Users\user\Desktop\Gcovr\main.gcda
root C:\Users\user\Desktop\Gcovr
fname c:\mingw\lib\gcc\mingw32\6.3.0\include\c++\iostream
Parsing coverage data for file c:\mingw\lib\gcc\mingw32\6.3.0\include\c++\iostream
Filtering coverage data for file c:\mingw\lib\gcc\mingw32\6.3.0\include\c++\iostream
Processing file: C:\Users\user\Desktop\Gcovr\math.gcda
Running gcov: 'gcov C:\Users\user\Desktop\Gcovr\math.gcda --branch-counts --branch-probabilities --preserve-paths --object-directory C:\Users\user\Desktop\Gcovr' in 'c:\users\user\appdata\local\temp\tmpyekiry'
Gathered coveraged data for 1 files