summaryrefslogtreecommitdiffstats
path: root/tester/covoar
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-05-08 15:09:41 +1000
committerChris Johns <chrisj@rtems.org>2018-06-15 15:54:25 +1000
commitcdfc56a9c9e304c9a479087a3a937ff8e3c06b59 (patch)
tree63c759052ee59865039a09cda614d9a9c2f374c5 /tester/covoar
parentcovoar: Refactor DesiredSymbols.cc to C++11. (diff)
downloadrtems-tools-cdfc56a9c9e304c9a479087a3a937ff8e3c06b59.tar.bz2
covoar: Control the RLD verbose level from the -v option.
Diffstat (limited to 'tester/covoar')
-rw-r--r--tester/covoar/covoar.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tester/covoar/covoar.cc b/tester/covoar/covoar.cc
index 9608bc3..eadf0ec 100644
--- a/tester/covoar/covoar.cc
+++ b/tester/covoar/covoar.cc
@@ -227,7 +227,8 @@ int main(
case 'S': symbolSet = optarg; break;
case 'T': target = optarg; break;
case 'O': outputDirectory = optarg; break;
- case 'v': Verbose = true; break;
+ case 'v': Verbose = true;
+ rld::verbose_inc (); break;
case 'p': projectName = optarg; break;
case 'd': debug = true; break;
default: /* '?' */