Don't send full stdout so far to testCasePartialEnded event

This commit is contained in:
Martin Hořeňovský
2022-01-01 12:21:31 +01:00
parent c9c3b74805
commit 6b55f5d780
3 changed files with 96 additions and 1 deletions

View File

@@ -206,7 +206,7 @@ namespace Catch {
redirectedCerr += oneRunCerr;
const auto singleRunTotals = m_totals.delta(beforeRunTotals);
auto statsForOneRun = TestCaseStats(testInfo, singleRunTotals, redirectedCout, oneRunCerr, aborting());
auto statsForOneRun = TestCaseStats(testInfo, singleRunTotals, oneRunCout, oneRunCerr, aborting());
m_reporter->testCasePartialEnded(statsForOneRun, testRuns);
++testRuns;