Verbose support in analyze_brprob_spec

Also add verbose argument support like analyze_brprob.py

contrib/ChangeLog:

	* analyze_brprob_spec.py: Add verbose argument.
This commit is contained in:
Xionghu Luo 2021-12-15 19:58:10 -06:00
parent 8a89c39be0
commit e1f8c14b9a
1 changed files with 1 additions and 0 deletions

View File

@ -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()