Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

report_format
PrevUpHomeNext

Parameter report_format allows to set the Unit Test Framework report format to one of the formats supplied by the framework. To specify a custom report format use unit_test_report API.

The only acceptable values for this parameter are the names of the output formats. By default the framework uses human readable format (HRF) for results reporting. Alternatively you can specify XML as report format. This format is easier to process by testing automation tools.

Acceptable values

Enumeration names:

  • HRF (default)
  • XML
Command line syntax
  • --report_format=<format>
  • -m <format>
Environment variable
BOOST_TEST_REPORT_FORMAT

PrevUpHomeNext