From df484a50c072aa8ae318c2cf974e0878d696684b Mon Sep 17 00:00:00 2001 From: Ryan Long Date: Thu, 15 Jul 2021 13:24:05 -0400 Subject: ReportsText.cc: Restore ostream format CID 1505940: Not restoring ostream format Save format of stream before changing it, and change it back before returning. Closes #4472 --- tester/covoar/ReportsText.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tester/covoar/ReportsText.cc b/tester/covoar/ReportsText.cc index 146fc35..c4a5dbc 100644 --- a/tester/covoar/ReportsText.cc +++ b/tester/covoar/ReportsText.cc @@ -10,6 +10,9 @@ #include "Explanations.h" #include "ObjdumpProcessor.h" +#include + +typedef rtems::utils::ostream_guard ostream_guard; namespace Coverage { @@ -145,6 +148,8 @@ bool ReportsText::PutCoverageLine( { const Coverage::Explanation* explanation; + ostream_guard oldState( report ); + report << "============================================" << std::endl << "Index : " << range.id << std::endl << "Symbol : " << symbolName -- cgit v1.2.3