CMake CTest 防止测试名称被截断
我目前正在运行 CTest,但我有一个问题,即使用长名称进行测试。例如:
"API Part1 : Some test information w/ this input file"
get 被截断为类似的内容
"API Part1 : Some test information w/ th").
测试名称似乎被截断为大约 31 个字符。我怎样才能改变这个?
谢谢
I'm currently running CTest, but I have a problem whereby tests with long names. For example:
"API Part1 : Some test information w/ this input file"
get's truncated to something like
"API Part1 : Some test information w/ th").
It seems like the test name is truncated to about 31 characters. How can I change this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置要在输出中显示的每个测试名称的最大宽度。这允许用户扩大输出以避免剪辑测试名称,这可能非常烦人。
此选项适用于 2.8 版本
Set the maximum width for each test name to show in the output. This allows the user to widen the output to avoid cliping the test name which can be very annoying.
This option is available for 2.8 Versions