gpt4 book ai didi

c++ - 如何使用 Google Test 捕获段错误?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:09:38 24 4
gpt4 key购买 nike

如何测试函数不会产生段错误?

这是我现在知道的,我可以做的:

EXPECT_DEATH(foo(nullParameter))

在函数旁边,产生了一个段错误,这是我想让它失败的行为。上面的代码片段将使测试通过,因为这是预期的,进程的死亡。

现在,我怎样才能让它失败?

最佳答案

这是一个函数,如果传递了一个空指针参数,就会出现段错误,否则不是:

int deref(int * pint)
{
return *pint;
}

这是一个测试该行为的 googletest 程序:

main.cpp

#include <gtest/gtest.h>

int deref(int * pint)
{
return *pint;
}


TEST(test_deref_1,will_segfault)
{
ASSERT_EXIT((deref(nullptr),exit(0)),::testing::KilledBySignal(SIGSEGV),".*");
}


TEST(test_dref_2,will_not_segfault)
{
int i = 42;
ASSERT_EXIT((deref(&i),exit(0)),::testing::ExitedWithCode(0),".*");
}


int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}

编译链接:

$ g++ -Wall -Wextra -pedantic -o tester main.cpp -pthread -lgtest

运行:

$ ./tester 
[==========] Running 2 tests from 2 test cases.
[----------] Global test environment set-up.
[----------] 1 test from test_deref_1
[ RUN ] test_deref_1.will_segfault
[ OK ] test_deref_1.will_segfault (168 ms)
[----------] 1 test from test_deref_1 (168 ms total)

[----------] 1 test from test_dref_2
[ RUN ] test_dref_2.will_not_segfault
[ OK ] test_dref_2.will_not_segfault (1 ms)
[----------] 1 test from test_dref_2 (1 ms total)

[----------] Global test environment tear-down
[==========] 2 tests from 2 test cases ran. (169 ms total)
[ PASSED ] 2 tests.

据我所知,TEST(test_deref_1,will_segfault) 是一个毫无意义的测试,因为我想不出任何情况下我想保证我自己认为程序会由于对我写的函数。

TEST(test_dref_2,will_not_segfault) 可能是一种有用的测试。有效,这是一个测试程序:

int main()
{
int i = 42;
defref(&i);
exit(0);
}

将由 exit(0) 而不是以任何过早的异常方式终止。一个更好的名字此测试可能是 TEST(test_dref,does_not_crash) 或类似的。

这可能是一种有用的测试,因为它可能存在很大的风险失败,如果 dereff 是一些足够复杂的代码,并且测试套件可以在不崩溃的情况下报告该故障。我们可以通过重写来强制失败它:

TEST(test_dref_2,will_not_segfault)
{
ASSERT_EXIT((deref(nullptr),exit(0)),::testing::ExitedWithCode(0),".*");
}

然后测试测试报告是:

$ ./tester
[==========] Running 2 tests from 2 test cases.
[----------] Global test environment set-up.
[----------] 1 test from test_deref_1
[ RUN ] test_deref_1.will_segfault
[ OK ] test_deref_1.will_segfault (147 ms)
[----------] 1 test from test_deref_1 (147 ms total)

[----------] 1 test from test_dref_2
[ RUN ] test_dref_2.will_not_segfault
main.cpp:25: Failure
Death test: (deref(nullptr),exit(0))
Result: died but not with expected exit code:
Terminated by signal 11 (core dumped)
Actual msg:
[ DEATH ]
[ FAILED ] test_dref_2.will_not_segfault (90 ms)
[----------] 1 test from test_dref_2 (90 ms total)

[----------] Global test environment tear-down
[==========] 2 tests from 2 test cases ran. (237 ms total)
[ PASSED ] 1 test.
[ FAILED ] 1 test, listed below:
[ FAILED ] test_dref_2.will_not_segfault

1 FAILED TEST

参见 the documentation of {ASSERT|EXPECT}_EXIT理解这些宏。

关于c++ - 如何使用 Google Test 捕获段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47583352/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com