mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 01:29:52 +00:00
[analyzer] [tests] Add an option for showing statistics after running tests.
Do not show statistics by default. llvm-svn: 338323
This commit is contained in:
parent
13d3748e7c
commit
8f6d65c685
@ -324,7 +324,7 @@ def dumpScanBuildResultsDiff(dirA, dirB, opts, deleteEmpty=True,
|
||||
# Load the run results.
|
||||
resultsA = loadResults(dirA, opts, opts.rootA, deleteEmpty)
|
||||
resultsB = loadResults(dirB, opts, opts.rootB, deleteEmpty)
|
||||
if resultsA.stats:
|
||||
if opts.show_stats:
|
||||
compareStats(resultsA, resultsB)
|
||||
if opts.stats_only:
|
||||
return
|
||||
@ -399,6 +399,8 @@ def generate_option_parser():
|
||||
Requires matplotlib")
|
||||
parser.add_option("--stats-only", action="store_true", dest="stats_only",
|
||||
default=False, help="Only show statistics on reports")
|
||||
parser.add_option("--show-stats", action="store_true", dest="show_stats",
|
||||
default=False, help="Show change in statistics")
|
||||
return parser
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user