Gcov报告解释

时间:2014-01-19 02:43:37

标签: c++ string

我正在课堂cashier上进行代码覆盖,我的老师对报告的含义进行了非常简短的教学,我认为这对于我的软件工程技能的发展非常重要。因此,我需要您对以下gcov报告的解释提出建议。我将不胜感激任何有助于我理解gcov的链接或文章。

标头文件

#ifndef CASHIER_H
#define CASHIER_H
#include <string>
using namespace std;


class cashier 
{
public:

        void setID(string);
    string getID();

    void setPassword(string);
    string getPassword();

    void settries(int);
    int gettries();
        void increase_tries();

private:
    string ID;
    string Password;
    int tries;



};

#endif  /* CASHIER_H */

实施文件

#include "cashier.h"




void cashier::setID(string value)
{
    this->ID = value;
}

void cashier::setPassword(string value)
{

    this->Password = value;

}

string cashier::getID()
{
    return this->ID;
}

string cashier::getPassword()
{
    return this->Password;
}

void cashier::settries(int value)
{
    this->tries=value;
}
int cashier::gettries()
{
    return this->tries;
}
void cashier::increase_tries()
{
    this->tries = this->tries + 1 ;

}

我在命令提示符下键入以下命令,以便在类

上使用gcov
gcov -b cashier.gnco

我得到了以下结果A

File 'cashier.cpp'
Lines executed:100.00% of 18 //what does the 18 mean 
No branches                  //what does no branches mean
Calls executed:100.00% of 4   // what does 4 mean ??
cashier.cpp:creating 'cashier.cpp.gcov'

File '/usr/include/c++/4.4/bits/basic_string.h' // Where did this come from ??
Lines executed:0.00% of 2
No branches
Calls executed:0.00% of 1
/usr/include/c++/4.4/bits/basic_string.h:creating 'basic_string.h.gcov

我输入以下命令

gcov -f cashier.gnco

我得到了以下结果B

Function '_ZN7cashier8settriesEi' // does this refer to the function :settries
Lines executed:100.00% of 3       // my teacher doesnt think so but i feel it refer
                                  //to it , who is correct??

Function '_ZN7cashier8gettriesEv'
Lines executed:100.00% of 2

Function '_ZN7cashier14increase_triesEv'
Lines executed:100.00% of 3

Function '_ZN7cashier11getPasswordEv'
Lines executed:100.00% of 2

Function '_ZN7cashier5getIDEv'
Lines executed:100.00% of 2

Function '_ZNSsaSERKSs'
Lines executed:0.00% of 2

Function '_ZN7cashier11setPasswordESs'
Lines executed:100.00% of 3

Function '_ZN7cashier5setIDESs'
Lines executed:100.00% of 3

File 'cashier.cpp'
Lines executed:100.00% of 18
cashier.cpp:creating 'cashier.cpp.gcov'

File '/usr/include/c++/4.4/bits/basic_string.h'
Lines executed:0.00% of 2
/usr/include/c++/4.4/bits/basic_string.h:creating 'basic_string.h.gcov'

我对结果A的提问

  1. 18 的含义是什么?它在Lines executed:100.00% of 18中的意义是什么?

  2. no branches的含义是什么?

  3. 4 的含义是什么?它在Calls executed:100.00% of 4中的含义是什么?当我在课程中有7个函数时,为什么有4个函数调用?

  4. 整段是什么意思?

    File '/usr/include/c++/4.4/bits/basic_string.h'
        Lines executed:0.00% of 2
        No branches
        Calls executed:0.00% of 1
        /usr/include/c++/4.4/bits/basic_string.h:creating 'basic_string.h.gcov
    
  5. 我对结果B的提问

    1. 所有函数名称等:_ZN7cashier8settriesEi。几乎匹配出纳函数名称等:void settries(int)。我认为它指的是同样的功能,但我的老师却不这么认为。哪个是对的?

    2. Lines executed:100.00% of 3中{3}对函数_ZN7cashier8settriesEi的含义是什么?

1 个答案:

答案 0 :(得分:1)

阅读手册页。在终端窗口中键入man gcov。此外,谷歌gcov。网上有说明。

  • gcov -b寻找分支机构。你的代码没有分支(没有if语句,没有循环),所以在这里使用-b选项是没有意义的。

  • gcov -f给出了每个函数的摘要。它省略了分支概率。

关于这些数字,有时gcov将open和close括号视为可执行语句,有时则不然。后方有点痛苦。查看cashier.cpp.gcov文件以查看哪些行计数,哪些行没有。

关于_ZN7cashier8settriesEi之类的名称:这是cashier::settries(int)的错位名称。通过c ++ filt传递这些名称。

关于/usr/include/c++/4.4/bits/basic_string.h,请忽略这些文件。它们不是你的,但它们会出现在gcov输出中。