diff options
author | Anna Zaks <ganna@apple.com> | 2012-08-24 21:07:49 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-08-24 21:07:49 +0000 |
commit | e12365bc27a877e4764d1761e1359435da120394 (patch) | |
tree | 7bee1eb3ed4c971e9bdb2290d717b8497edb9a80 /clang/utils/analyzer/CmpRuns.py | |
parent | 6c67d98374067e77bc56e22d659aa2f4d076fb25 (diff) | |
download | bcm5719-llvm-e12365bc27a877e4764d1761e1359435da120394.tar.gz bcm5719-llvm-e12365bc27a877e4764d1761e1359435da120394.zip |
[analyzer] Ted fixed the plist-html issue, so the assert can go away.
llvm-svn: 162598
Diffstat (limited to 'clang/utils/analyzer/CmpRuns.py')
-rwxr-xr-x | clang/utils/analyzer/CmpRuns.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/utils/analyzer/CmpRuns.py b/clang/utils/analyzer/CmpRuns.py index c8f05cbcf47..f2961cf0acf 100755 --- a/clang/utils/analyzer/CmpRuns.py +++ b/clang/utils/analyzer/CmpRuns.py @@ -146,9 +146,7 @@ def loadResults(path, opts, root = "", deleteEmpty=True): for d in data['diagnostics']: # FIXME: Why is this named files, when does it have multiple # files? - # TODO: Add the assert back in after we fix the - # plist-html output. - # assert len(d['HTMLDiagnostics_files']) == 1 + assert len(d['HTMLDiagnostics_files']) == 1 htmlFiles.append(d.pop('HTMLDiagnostics_files')[0]) else: htmlFiles = [None] * len(data['diagnostics']) |