【C++】解决googleTest报错error: SEH exception with code 0xc0000005 thrown in the test body.

简介: 【C++】解决googleTest报错error: SEH exception with code 0xc0000005 thrown in the test body.

一、报错内容

使用vs2019结合gtest做单元测试时,报错如下内容:

[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/83
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/83, where GetParam() = 83 (3 ms)
[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/84
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/84, where GetParam() = 84 (3 ms)
[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/85
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/85, where GetParam() = 85 (3 ms)
[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/86
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/86, where GetParam() = 86 (3 ms)
[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/87
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/87, where GetParam() = 87 (3 ms)
[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/88
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/88, where GetParam() = 88 (3 ms)
[ RUN      ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/89
unknown file: error: SEH exception with code 0xc0000005 thrown in the test body.
[  FAILED  ] kNarrow2dJointAlgorithm/FixturekNarrow2dJointThresholdSeamGray.TestThresholdSeamGray/89, where GetParam() = 89 (3 ms)

二、解决方案

在 Visual Studio 2019 中使用 GoogleTest 时遇到了这个问题。我们的设置涉及为 GoogleTest 框架创建一个库,然后将其链接到我们单独的单元测试。我最近更新了框架支持并从头开始重新编译。经过一番挖掘,发现“结构成员对齐”设置是罪魁祸首:


解决办法:项目属性 > 配置属性 > C/C++ > 代码生成 > 结构成员对齐 > 字节 /Zp1


虽然 Frameworks 项目的设置设为“默认”,但相应的 Unit Test 项目将其配置为“1 字节 /Zp1”。将更改为相同的对齐方式,重新编译后,问题就消失了。

相关文章
|
4月前
|
编译器 开发工具 C++
【Python】已解决error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Microsoft C++ Build
【Python】已解决error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Microsoft C++ Build
1935 0
|
1月前
|
缓存 Linux 编译器
【C++】CentOS环境搭建-安装log4cplus日志组件包及报错解决方案
通过上述步骤,您应该能够在CentOS环境中成功安装并使用log4cplus日志组件。面对任何安装或使用过程中出现的问题,仔细检查错误信息,对照提供的解决方案进行调整,通常都能找到合适的解决之道。log4cplus的强大功能将为您的项目提供灵活、高效的日志管理方案,助力软件开发与维护。
54 0
|
2月前
|
JavaScript 前端开发 测试技术
一个google Test文件C++语言案例
这篇文章我们来介绍一下真正的C++语言如何用GTest来实现单元测试。
19 0
|
3月前
|
JavaScript C++
【C++ visual studio】解决VS报错:error C2447: “{”: 缺少函数标题(是否是老式的形式表?)【亲测有效,无效捶我】
【C++ visual studio】解决VS报错:error C2447: “{”: 缺少函数标题(是否是老式的形式表?)【亲测有效,无效捶我】
154 0
|
5月前
|
Linux C++
经验分享:C++ error:‘syscall’ was not declared in this scope
经验分享:C++ error:‘syscall’ was not declared in this scope
218 3
|
5月前
|
项目管理 C++
【VS Code】安装配置调试C/C++(二)
【VS Code】安装配置调试C/C++(二)
90 1
|
6天前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
29 4
|
7天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
25 4
|
30天前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
27 4
|
30天前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
23 4