The following branch creates a new flag called formatter that allows the user to speficy if the results should be printed to stderr or stdout. If the flag is not set, the results default to stderr.
This requires changes to Output.print_result and Precondition.check, which both print information. The function Precondition.exclude was also altered to take into account the changes to check since exclude calls check.
The following branch creates a new flag called
formatter
that allows the user to speficy if the results should be printed tostderr
orstdout
. If the flag is not set, the results default tostderr
.This requires changes to
Output.print_result
andPrecondition.check
, which both print information. The functionPrecondition.exclude
was also altered to take into account the changes tocheck
sinceexclude
callscheck
.