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
The log can be several MBs (typically 6-8MB) and contains results for all tests executed, even passed ones.
Modify the test to provide a sectioned-off log file for each of the sub-results, like /per-rule does, so that logs for passed tests can be discarded if needed.
Ie. instead of ctest_results, iterate directly over LastTest.log, matching on sections like
<end of output>
Test time = 0.02 sec
----------------------------------------------------------
Test Passed.
"test-generate_contributors" end time: Aug 17 23:18 CEST
"test-generate_contributors" time elapsed: 00:00:00
----------------------------------------------------------
as the ending barrier, extracting test name, pass/fail/etc. from it, and submitting any test output between the barriers as a log file to results.report().
The text was updated successfully, but these errors were encountered:
The log can be several MBs (typically 6-8MB) and contains results for all tests executed, even passed ones.
Modify the test to provide a sectioned-off log file for each of the sub-results, like
/per-rule
does, so that logs for passed tests can be discarded if needed.Ie. instead of
ctest_results
, iterate directly overLastTest.log
, matching on sections likeas a starting barrier, and
as the ending barrier, extracting test name, pass/fail/etc. from it, and submitting any test output between the barriers as a log file to
results.report()
.The text was updated successfully, but these errors were encountered: