如何在命令行中使用MS代码覆盖工具?

发布于 2024-10-16 20:12:22 字数 753 浏览 2 评论 0原文

我有以下 C++ 代码。

#include <iostream>
using namespace std;

int testfunction(int input)
{
    if (input > 0) {
        return 1;
    }
    else {
        return 0;
    }
}

int main()
{
    testfunction(-1);
    testfunction(1);
}

我编译它以获取执行

cl /Zi hello.cpp -link /Profile

然后,我检测执行并生成 .coverage 二进制文件。

vsinstr -coverage hello.exe
start vsperfmon -coverage -output:mytestrun.coverage
vsperfcmd -shutdown

当我在 VS2010 中打开覆盖率文件时,我没有得到任何结果。

在此处输入图像描述

可能出了什么问题? 我按照这篇文章中的说明进行操作。

I have the following C++ code.

#include <iostream>
using namespace std;

int testfunction(int input)
{
    if (input > 0) {
        return 1;
    }
    else {
        return 0;
    }
}

int main()
{
    testfunction(-1);
    testfunction(1);
}

I compiled it to get the execution

cl /Zi hello.cpp -link /Profile

Then, I instrument the execution and generated the .coverage binary.

vsinstr -coverage hello.exe
start vsperfmon -coverage -output:mytestrun.coverage
vsperfcmd -shutdown

When I open the coverage file in VS2010, I got nothing in its results.

enter image description here

What might be wrong?
I followed the instructions in this post.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黎歌 2024-10-23 20:12:22

您需要在监视器启动后运行您的程序:

  1. > vsinstr /coverage hello.exe
  2. >启动 vsperfmon /coverage /output:mytestrun.coverage
  3. > hello.exe
  4. > vsperfcmd /shutdown

当您运行步骤 3 时,您应该在 vsperfmon.exe 中看到一些通知,表明 hello.exe 已启动。

如果您计划进行多次测试运行,则只需运行步骤 2-4。换句话说,您只需在构建二进制文件后对其进行一次检测(步骤 1)。

You need to run your program after the monitor starts:

  1. > vsinstr /coverage hello.exe
  2. > start vsperfmon /coverage /output:mytestrun.coverage
  3. > hello.exe
  4. > vsperfcmd /shutdown

When you run step 3, you should see some notification in vsperfmon.exe that hello.exe has started.

If you plan on doing multiple test runs, you only need to run steps 2-4. In other words, you only need to instrument your binary (step 1) once after it's built.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文