aboutsummaryrefslogtreecommitdiff
path: root/piglit-summary-html.py
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2011-04-05 00:03:15 +0200
committerMarek Olšák <maraeo@gmail.com>2011-04-06 01:41:24 +0200
commit02b9ba501015655ff705170997193c158797bc21 (patch)
treeee965976367294e8fc2ed4878f5d4a89118c9d21 /piglit-summary-html.py
parent86a819d052802853b41230887120734a62280c83 (diff)
core: generate a summary of fixes
Same as regressions if you reverse the order of columns.
Diffstat (limited to 'piglit-summary-html.py')
-rwxr-xr-xpiglit-summary-html.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/piglit-summary-html.py b/piglit-summary-html.py
index 30a049e3..4e942374 100755
--- a/piglit-summary-html.py
+++ b/piglit-summary-html.py
@@ -76,7 +76,8 @@ SummaryPages = {
'all': 'index.html',
'changes': 'changes.html',
'problems': 'problems.html',
- 'regressions': 'regressions.html'
+ 'regressions': 'regressions.html',
+ 'fixes': 'fixes.html'
}
def buildDetailValue(detail):
@@ -195,6 +196,8 @@ def buildGroupSummary(indent, groupsummary, showcurrent):
names = filter(lambda n: groupsummary.children[n].problems, names)
elif showcurrent == 'regressions':
names = filter(lambda n: groupsummary.children[n].regressions, names)
+ elif showcurrent == 'fixes':
+ names = filter(lambda n: groupsummary.children[n].fixes, names)
names.sort()
for n in names:
@@ -329,6 +332,7 @@ def main():
writeSummaryHtml(summary, summaryDir, 'problems')
writeSummaryHtml(summary, summaryDir, 'changes')
writeSummaryHtml(summary, summaryDir, 'regressions')
+ writeSummaryHtml(summary, summaryDir, 'fixes')
if __name__ == "__main__":