From: George Karpenkov Date: Mon, 30 Jul 2018 23:01:47 +0000 (+0000) Subject: [analyzer] [tests] Add an option for showing statistics after running tests. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef9eb3e6cd9ea46f28c2867db9f132263125cdd8;p=clang [analyzer] [tests] Add an option for showing statistics after running tests. Do not show statistics by default. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@338323 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/analyzer/CmpRuns.py b/utils/analyzer/CmpRuns.py index 1c44f5c6a6..7c9744727e 100755 --- a/utils/analyzer/CmpRuns.py +++ b/utils/analyzer/CmpRuns.py @@ -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