On 12/15/21 02:58, Xionghu Luo wrote:
Also add verbose argument support like analyze_brprob.py
contrib/ChangeLog:
* analyze_brprob_spec.py: Add verbose argument.
---
contrib/analyze_brprob_spec.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/contrib/analyze_brprob_spec.py b/contrib/analyze_brprob_spec.py
index e621853ba4e..063bd11d99c 100755
--- a/contrib/analyze_brprob_spec.py
+++ b/contrib/analyze_brprob_spec.py
@@ -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')
Hello.
Is the argument properly passes to invocation of analyze_brprob.py script?
If so, then please install the patch.
Cheers,
Martin
args = parser.parse_args()