让 Google Test 出错时断点

让 Google Test 出错时断点

Google Test 缺省是出错退出。

如果最后的出错行在系统库中,输出的错误行位置就没什么帮助。

如果是调试运行,直接退出根本就不知道哪里出错了。

后来添加了一个运行参数: --gtest_break_on_failure

终于可以断点到错误了。

参考: Google C++ Testing Framework 简介

http://www.ibm.com/developerworks/cn/aix/library/au-googletestingframework.html

你可能感兴趣的:(让 Google Test 出错时断点)