...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Parameter run_test allows to filter which test units
to execute during testing. The Unit Test Framework
supports both "selection filters", which allow to select which
test units to enable from the set of available test units, and "disabler
filters", which allow to disable some test units. The Unit
Test Framework also supports enabling/disabling test units at
compile time. These settings identify the default set of test units to
run. Parameter run_test is used to change this default.
This parameter is repeatable, so you can specify more than one filter if
necessary. It is also possible to use the ':' for separating each filter
which can be used for filtering the tests with the environment variable
BOOST_TEST_RUN_FILTERS
(as it cannot be repeated like --run_test
).
More details about practical application of this parameter resides in test unit filtering section.
String value representing single filter or a set of filters separated by ':'. The following grammar productions describe the syntax of filters:
filter_set ::= (filter ':')* filter filter ::= relative_spec? test_set relative_spec ::= '+' | '!' test_set ::= label | path label ::= '@' identifier path ::= (suite '/')? pattern_list pattern_list ::= (pattern ',')* pattern suite ::= (pattern '/')* pattern pattern ::= '*'? identifier '*'?
Caution | |
---|---|
the |
Regarding the meaning of these values see here.
--run_test=<test
unit filter
spec>
-t
<test
unit filter
spec>
BOOST_TEST_RUN_FILTERS