You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support arbitrary tagging and selection of testcases.
A testcase can optionally have a list of tags associated with it.
Srunner can be run with an optional include list of tags and an optional
exclude list of tags. These will have the effect of filtering testcases
that would otherwise be run.
@@ -1975,6 +2039,10 @@ CK_RUN_CASE: Name of a test case, runs only that test. See section @ref{Selectiv
1975
2039
1976
2040
CK_RUN_SUITE: Name of a test suite, runs only that suite. See section @ref{SelectiveRunningofTests}.
1977
2041
2042
+
CK_INCLUDE_TAGS: String of space separated tags, runs only test cases associated with at least one of the tags, See section @ref{SelectingTestsBasedonArbitraryTags}.
2043
+
2044
+
CK_EXCLUDE_TAGS: String of space separated tags, runs only test cases not associated with any of the tags, See section @ref{SelectingTestsBasedonArbitraryTags}.
2045
+
1978
2046
CK_VERBOSITY: How much output to emit, accepts: ``silent'', ``minimal'', ``normal'', ``subunit'', or ``verbose''. See section @ref{SRunnerOutput}.
1979
2047
1980
2048
CK_FORK: Set to ``no'' to disable using fork() to run unit tests in their own process. This is useful for debugging segmentation faults. See section @ref{NoForkMode}.
0 commit comments