summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ReportsHtml.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/ReportsHtml.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/ReportsHtml.h')
-rw-r--r--tester/covoar/ReportsHtml.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tester/covoar/ReportsHtml.h b/tester/covoar/ReportsHtml.h
index 711c48b..46698f0 100644
--- a/tester/covoar/ReportsHtml.h
+++ b/tester/covoar/ReportsHtml.h
@@ -28,7 +28,8 @@ class ReportsHtml: public ReportsBase {
ReportsHtml(
time_t timestamp,
const std::string& symbolSetName,
- Coverage::Explanations& allExplanations
+ Coverage::Explanations& allExplanations,
+ const std::string& projectName
);
~ReportsHtml();