为什么谷歌测试是分段故障

Why is Google Test segfaulting?

本文关键字:分段 故障 测试 谷歌 为什么      更新时间:2023-10-16

我是Google Test的新手,我正在使用提供的示例。我的问题是,当我引入一个故障并设置GTEST_BREAK_ON_FAILURE=1(或使用命令行选项)时,GTest将出现segfault。

我正在考虑这个例子。如果我在任何测试中插入类似这样的内容,我将开始得到段错误:

EXPECT_EQ(8, 2*3);

只是重申,只有当我也设置了GTEST_BREAK_ON_FAILURE=1。我已经从命令行运行,也与gdb。如果没有设置该环境变量,则报告错误,但不报告segfault。

任何线索可能导致这个/我做错了什么?我一直在寻找类似的问题,但我还没有遇到任何问题。

仅供参考,我使用谷歌测试版本1.7.0在64位CrunchBang Linux 11"Waldorf"上运行。

编辑代码示例:

// Tests factorial of positive numbers.
TEST(FactorialTest, Positive) {
  EXPECT_EQ(1, Factorial(1));
  EXPECT_EQ(2, Factorial(2));
  EXPECT_EQ(6, Factorial(3));
  EXPECT_EQ(40320, Factorial(8));
}

调试器输出:

(gdb) run
Starting program: /home/yourfavoriteprotein/bin/cpp_unit_test_frameworks/gtest-1.7.0/samples/mytest 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Running main() from test_main.cc
[==========] Running 6 tests from 2 test cases.
[----------] Global test environment set-up.
[----------] 3 tests from FactorialTest
[ RUN      ] FactorialTest.Negative
[       OK ] FactorialTest.Negative (0 ms)
[ RUN      ] FactorialTest.Zero
[       OK ] FactorialTest.Zero (0 ms)
[ RUN      ] FactorialTest.Positive
sample1_unittest.cc:112: Failure
Value of: 2*3
  Actual: 6
Expected: 8
Program received signal SIGSEGV, Segmentation fault.
0x0000000000413427 in testing::UnitTest::AddTestPartResult(testing::TestPartResult::Type,         char const*, int, std::string const&, std::string const&) ()
(gdb) quit

GTEST_BREAK_ON_FAILURE=1意味着如果测试失败,Google Test会将您放入调试器。

让你进入调试器的一个简单、便携的方法就是触发段错误。

换句话说,这种行为是设计出来的;Google Test故意触发一个段错误来运行调试器。(参见这里的Google测试代码)