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
Description
Currently, the output of --list-* options writes to stdout through Catch::cout(). It should obey the -o flag instead.
Additional context
Because the default implementation of --list* flags is done in the IStreamingReporter interface, we need to extend it to contain the stream it should write to, e.g. by giving it a ReporterConfig member and initializing it properly.
The text was updated successfully, but these errors were encountered:
Previously, every base derived from the IStreamingReporter had
its own `IConfig const* m_config` member, so this just centralizes
the handling thereof.
Part of #2061
Description
Currently, the output of
--list-*
options writes to stdout throughCatch::cout()
. It should obey the-o
flag instead.Additional context
Because the default implementation of
--list*
flags is done in theIStreamingReporter
interface, we need to extend it to contain the stream it should write to, e.g. by giving it aReporterConfig
member and initializing it properly.The text was updated successfully, but these errors were encountered: