如何在不从谷歌日志记录的情况下运行 gtests?
我正在使用 gtest 运行单元测试。不过,我也在我正在测试的代码中使用 google glog。不幸的是,这个输出妨碍了测试结果并且看起来很混乱。如何摆脱 glog 输出?
I'm running unit tests with gtest. However I'm also using google glog in the code I'm testing. Unfortunately this output gets in the way of the test results and looks messy. How do I do I get rid of the glog output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎有效,抑制了所有日志消息。
This seems to work, suppressing all log messages.
从高级指南中,定义您自己的空事件监听器并超越所有调试日志,然后从事件监听器中删除默认打印机。
示例程序此处
From the Advanced Guide, define your own empty EventListener and surpass all debug log and then remove the default printer from the event listener.
Sample program here