[cfe-commits] r162071 - /cfe/trunk/utils/analyzer/CmpRuns.py
Anna Zaks
ganna at apple.com
Thu Aug 16 18:09:13 PDT 2012
Author: zaks
Date: Thu Aug 16 20:09:13 2012
New Revision: 162071
URL: http://llvm.org/viewvc/llvm-project?rev=162071&view=rev
Log:
[analyzer] Unbreak the static analyzer buildbot.
We no longer associate the correct HTML file with plist diagnostic.
Fall out from r162028.
Modified:
cfe/trunk/utils/analyzer/CmpRuns.py
Modified: cfe/trunk/utils/analyzer/CmpRuns.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/analyzer/CmpRuns.py?rev=162071&r1=162070&r2=162071&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/CmpRuns.py (original)
+++ cfe/trunk/utils/analyzer/CmpRuns.py Thu Aug 16 20:09:13 2012
@@ -146,7 +146,9 @@
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'])
More information about the cfe-commits
mailing list