How to process Boost.Test output with Eclipse

后端 未结 3 875
别那么骄傲
别那么骄傲 2020-12-29 13:27

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 an

3条回答
  •  感情败类
    2020-12-29 13:34

    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.

提交回复
热议问题