Verbose support in analyze_brprob_spec
authorXionghu Luo <luoxhu@linux.ibm.com>
Thu, 16 Dec 2021 01:58:10 +0000 (19:58 -0600)
committerXionghu Luo <luoxhu@linux.ibm.com>
Thu, 16 Dec 2021 01:58:10 +0000 (19:58 -0600)
Also add verbose argument support like analyze_brprob.py

contrib/ChangeLog:

* analyze_brprob_spec.py: Add verbose argument.

contrib/analyze_brprob_spec.py

index e621853..063bd11 100755 (executable)
@@ -31,6 +31,7 @@ parser.add_argument('-s', '--sorting', dest = 'sorting',
     choices = ['branches', 'branch-hitrate', 'hitrate', 'coverage', 'name'],
     default = 'branches')
 parser.add_argument('-d', '--def-file', help = 'path to predict.def')
+parser.add_argument('-v', '--verbose', action = 'store_true', help = 'Print verbose informations')
 
 args = parser.parse_args()