summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ReportsText.h
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 17:41:23 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commit987d912435832aec118a02e6e2f2160f4319ca71 (patch)
tree81079b028db81ecc05ea2203a34f56c3324f78fb /tester/covoar/ReportsText.h
parentRemove dynamicLibrary global variable (diff)
downloadrtems-tools-987d912435832aec118a02e6e2f2160f4319ca71.tar.bz2
Remove projectName global variable
- Replaced projectName in app_common with a local variable in covoar() - Changed datatype to string - Changed conditionals to reflect this - Created projectName_m member variable for ReportsBase - Added parameter to Reports* constructors to initialize projectName_m
Diffstat (limited to 'tester/covoar/ReportsText.h')
-rw-r--r--tester/covoar/ReportsText.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tester/covoar/ReportsText.h b/tester/covoar/ReportsText.h
index 48528b0..c44591d 100644
--- a/tester/covoar/ReportsText.h
+++ b/tester/covoar/ReportsText.h
@@ -24,7 +24,8 @@ class ReportsText: public ReportsBase {
ReportsText(
time_t timestamp,
const std::string& symbolSetName,
- Coverage::Explanations& allExplanations
+ Coverage::Explanations& allExplanations,
+ const std::string& projectName
);
virtual ~ReportsText();