diff options
author | Anna Zaks <ganna@apple.com> | 2012-08-17 01:09:13 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-08-17 01:09:13 +0000 |
commit | b81a9adc242c304340c74d4e755d0d7954c9c1b5 (patch) | |
tree | 35d49329691824cd2f5e0df94f050d0b4f06ba8e /utils/analyzer | |
parent | 9e63dc582b3bfb9ab2e80631b5311b070a73dff8 (diff) |
[analyzer] Unbreak the static analyzer buildbot.
We no longer associate the correct HTML file with plist diagnostic.
Fall out from r162028.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/analyzer')
-rwxr-xr-x | utils/analyzer/CmpRuns.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/analyzer/CmpRuns.py b/utils/analyzer/CmpRuns.py index f2961cf0ac..c8f05cbcf4 100755 --- a/utils/analyzer/CmpRuns.py +++ b/utils/analyzer/CmpRuns.py @@ -146,7 +146,9 @@ def loadResults(path, opts, root = "", deleteEmpty=True): for d in data['diagnostics']: # FIXME: Why is this named files, when does it have multiple # files? - assert len(d['HTMLDiagnostics_files']) == 1 + # TODO: Add the assert back in after we fix the + # plist-html output. + # assert len(d['HTMLDiagnostics_files']) == 1 htmlFiles.append(d.pop('HTMLDiagnostics_files')[0]) else: htmlFiles = [None] * len(data['diagnostics']) |