How to process Boost.Test output with Eclipse

浪子不回头ぞ 提交于 2019-11-29 09:18:02

问题


I'm using Eclipse CDT and Boost.Test(with Boost.Build). I would like Eclipse to parse output of Boost.Test generated during by run of test suites during build.
Does anybody know how to achieve this? Thanks in advance


回答1:


Go to Window > Preferences. In the preferences dialog, choose C/C++ > Build from the options tree. Under error parsers, click "Add..." In the new dialog, replace "Regex Error Parser" with something like "Boost Unit Test Error Parser".

In the Error Parser Options pane, add the following lines. I can't guarantee that these rules catch all possible output from boost unit tests, but so far they work for me, and we can always add more later:

Severity | Pattern                                          | File | Line | Description
Error    | (.*)\((\d*)\): ((fatal )?error in ".*":.*)       | $1   | $2   | $3
Error    | \*\*\* (\d* failures detected in test suite ".*")|      |      | $1
Info     | (.*)\((\d*)\): (last checkpoint)                 | $1   | $2   | $3

Note that the new parser will not automatically be used in existing projects. To enable the parser for an existing project, go to Project > Properties, C/C++ Make Project, Error Parsers tab. If the newly added parser is not in the list, click "Restore Defaults", and it should now be available.




回答2:


There is also a nice plugin called cdt c/c++ tests runner, which supports Google test, boost test, and qt test.

You can find instructions at the following link:

https://github.com/xgsa/cdt-tests-runner/wiki/Tutorial

I have been using it for a while, and found it efficient and nice. It has features like a JUnit plugin for Java.



来源:https://stackoverflow.com/questions/2491380/how-to-process-boost-test-output-with-eclipse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!