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

output_format
PrevUpHomeNext

Parameter output_format combines an effect of report_format and log_format parameters. This parameter does not have a default value. The only acceptable values are string names of output formats (see below).

[Note] Note

This parameter has precedence over report_format and log_format on the command line.

Acceptable values

Enumeration name:

  • HRF
  • XML

HRF stands for human readable format, while XML is dedicated to automated output processing

Command line syntax
  • --output_format=<format>
  • -o <format>
Environment variable
BOOST_TEST_OUTPUT_FORMAT

PrevUpHomeNext