aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-08-24 21:07:49 +0000
committerAnna Zaks <ganna@apple.com>2012-08-24 21:07:49 +0000
commit44cceb96ea00534136a61dbbe738ad9beaa87793 (patch)
tree3d151ac15072afb496e4ebd224bf243bb2043ab7
parent53b890ba226e8c84a157ab5e757b93666cc6859d (diff)
[analyzer] Ted fixed the plist-html issue, so the assert can go away.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162598 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/analyzer/CmpRuns.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/analyzer/CmpRuns.py b/utils/analyzer/CmpRuns.py
index c8f05cbcf4..f2961cf0ac 100755
--- a/utils/analyzer/CmpRuns.py
+++ b/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'])