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 | af3ae3cbbd25cf8dd984e263bd318b7852960cf8 (patch) | |
tree | 9ea673a8470c3e1be1b940462ac53edf0f4ad2ef | |
parent | 99eff01fa2d9debfdad290e300c7d013c2fa03da (diff) | |
download | bcm5719-llvm-af3ae3cbbd25cf8dd984e263bd318b7852960cf8.tar.gz bcm5719-llvm-af3ae3cbbd25cf8dd984e263bd318b7852960cf8.zip |
[analyzer] Unbreak the static analyzer buildbot.
We no longer associate the correct HTML file with plist diagnostic.
Fall out from r162028.
llvm-svn: 162071
-rwxr-xr-x | clang/utils/analyzer/CmpRuns.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/utils/analyzer/CmpRuns.py b/clang/utils/analyzer/CmpRuns.py index f2961cf0acf..c8f05cbcf47 100755 --- a/clang/utils/analyzer/CmpRuns.py +++ b/clang/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']) |