控制 Boost.Test 源位置格式的输出

Controlling output of Boost.Test source location format

Catch2 and Boost.Test 为编写单元测试提供了类似的功能。 对于某个项目,我必须使用 Boost.Test 而不是 Catch2。 我遇到的问题是两者都使用不同的格式输出。

例如,Catch2 会说这是一个失败

test.cpp:9

(参见下面的示例)。 但是 Boost.Test 会说

test.cpp(9): error in ....

这种格式不允许我的编辑器将输出识别为源位置。

有没有办法让Boost.Test将源位置输出为file.ext:lineno而不是file.ext(lineno)

这是 Catch2 的典型输出

----------------------------------------------
Testing Binary Search
----------------------------------------------
test.cpp:9
..............................................test.cpp:18: FAILED:
  REQUIRE( binary_search(arr, 176) == 0 )
with expansion:
  -1 == 0==============================================
test cases: 1 | 1 failed
assertions: 5 | 4 passed | 1 failed

这是 Boost.Test

的典型输出
Running 7 test cases...
./layout.hpp(764): error: in "layout_to_offset_1d_nontrivial": check L[3] == &B[3] - base(B) has failed [3 != 6]
Running 7 test cases...
./.././detail/layout.hpp(764): error: in "layout_to_offset_1d_nontrivial": check L[3] == &B[3] - base(B) has failed [3 != 6]

*** 1 failure is detected in the test module "C++ Unit Tests for Multi layout"

我在这个历史 post 中找到了解决方案:https://richarddingwall.name/2008/06/01/using-the-boost-unit-test-framework-with-xcode-3

使用(丢失的)虚函数覆盖和 Boost.Test 固定装置的艺术:

只需添加此代码(对原始 post 的一些更新,具有次要格式和 C++11 更新):

#include<boost/test/output/compiler_log_formatter.hpp>

struct xcode_log_formatter: boost::unit_test::output::compiler_log_formatter{
    // Produces an Xcode-friendly message prefix.
    void print_prefix(std::ostream& output, boost::unit_test::const_string file_name, std::size_t line) override{
        output << file_name << ':' << line << ": error: ";
    }
};

// Set up the unit test framework to use an xcode-friendly log formatter.
struct xcode_config{
    xcode_config(){boost::unit_test::unit_test_log.set_formatter(new xcode_log_formatter);}
};

// Call our fixture.
BOOST_GLOBAL_FIXTURE(xcode_config);

通过此更改,输出看起来像(注意 file:lineno 格式)。

Running 7 test cases...
./layout.hpp:781: error: error: in "layout_to_offset_1d_nontrivial": check L[3] == &B[3] - base(B) has failed [3 != 6]
Running 7 test cases...
./.././detail/layout.hpp:781: error: error: in "layout_to_offset_1d_nontrivial": check L[3] == &B[3] - base(B) has failed [3 != 6]

我仍然对更简单的解决方案感兴趣。


这是此代码的更紧凑版本,为我自己的情况重命名 (xcode->gedit):

#include<boost/test/output/compiler_log_formatter.hpp>
struct gedit_config{
    struct formatter : boost::unit_test::output::compiler_log_formatter{
        void print_prefix(std::ostream& out, boost::unit_test::const_string file, std::size_t line){
            out<< file <<':'<< line <<": ";
        }
    };
    gedit_config(){boost::unit_test::unit_test_log.set_formatter(new formatter);}
};
BOOST_GLOBAL_FIXTURE(gedit_config);