summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ReportsBase.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 17:02:26 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commitc159160424dc18b5c71e4bacae0230da3ea16ec1 (patch)
treed2b82dd0c7206532aa2049eb48d57020eb643351 /tester/covoar/ReportsBase.h
parentRemove objdumpProcessor global variable (diff)
downloadrtems-tools-c159160424dc18b5c71e4bacae0230da3ea16ec1.tar.bz2
Remove Verbose global variable
Replaced Verbose in app_common with local variables that are passed as a parameter into numerous functions
Diffstat (limited to 'tester/covoar/ReportsBase.h')
-rw-r--r--tester/covoar/ReportsBase.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tester/covoar/ReportsBase.h b/tester/covoar/ReportsBase.h
index efc110d..41ac7ef 100644
--- a/tester/covoar/ReportsBase.h
+++ b/tester/covoar/ReportsBase.h
@@ -400,10 +400,12 @@ class ReportsBase {
*
* @param[in] symbolSetName is the name of the symbol set to report on.
* @param[in] allExplanations is the explanations to report on.
+ * @param[in] verbose specifies whether to be verbose with output
*/
void GenerateReports(
const std::string& symbolSetName,
- Coverage::Explanations& allExplanations
+ Coverage::Explanations& allExplanations,
+ bool verbose
);
}