summaryrefslogtreecommitdiffstats
path: root/tester/covoar/covoar.cc
diff options
context:
space:
mode:
authorRyan Long <ryan.long@oarcorp.com>2021-07-27 18:56:00 -0400
committerJoel Sherrill <joel@rtems.org>2021-08-03 15:56:53 -0500
commitdf75483098df5027edf3e13765959b5f1a86e586 (patch)
treeb7c6dc859355e252ac66f0567932ddc145d476df /tester/covoar/covoar.cc
parentRemove projectName global variable (diff)
downloadrtems-tools-df75483098df5027edf3e13765959b5f1a86e586.tar.bz2
Remove outputDirectory global variable
- Replaced outputDirectory in app_common with a local variable in covoar() - Created the outputDirectory_m member variable - Added parameters to Reports* constructors to initialize outputDirectory_m and non member functions
Diffstat (limited to 'tester/covoar/covoar.cc')
-rw-r--r--tester/covoar/covoar.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/tester/covoar/covoar.cc b/tester/covoar/covoar.cc
index 5f8de5b..2d161aa 100644
--- a/tester/covoar/covoar.cc
+++ b/tester/covoar/covoar.cc
@@ -179,6 +179,7 @@ int covoar(
bool verbose = false;
std::string dynamicLibrary;
std::string projectName;
+ std::string outputDirectory = ".";
//
// Process command line options.
@@ -479,7 +480,8 @@ int covoar(
setName,
allExplanations,
verbose,
- projectName
+ projectName,
+ outputDirectory
);
}