diff options
author | Marek Olšák <maraeo@gmail.com> | 2012-10-03 00:45:06 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2012-10-10 00:53:05 +0200 |
commit | 4f79da52de077e6802e9e7af4beab517b0341a93 (patch) | |
tree | 8337e7d75ebfc03e9bca9a3f99433931f97a5f74 /piglit-summary-html.py | |
parent | 52c7f69e1978c45503dbb62bd149363bc1ec7078 (diff) |
Generate a html summary of skipped tests
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'piglit-summary-html.py')
-rwxr-xr-x | piglit-summary-html.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/piglit-summary-html.py b/piglit-summary-html.py index d0e49f3c2..087b50372 100755 --- a/piglit-summary-html.py +++ b/piglit-summary-html.py @@ -78,7 +78,8 @@ SummaryPages = { 'changes': 'changes.html', 'problems': 'problems.html', 'regressions': 'regressions.html', - 'fixes': 'fixes.html' + 'fixes': 'fixes.html', + 'skipped': 'skipped.html' } def buildResultListItem(detail): @@ -207,6 +208,8 @@ def buildGroupSummary(indent, groupsummary, showcurrent): names = filter(lambda n: groupsummary.children[n].regressions, names) elif showcurrent == 'fixes': names = filter(lambda n: groupsummary.children[n].fixes, names) + elif showcurrent == 'skipped': + names = filter(lambda n: groupsummary.children[n].skipped, names) names.sort() for n in names: @@ -340,6 +343,7 @@ def main(): writeSummaryHtml(summary, summaryDir, 'changes') writeSummaryHtml(summary, summaryDir, 'regressions') writeSummaryHtml(summary, summaryDir, 'fixes') + writeSummaryHtml(summary, summaryDir, 'skipped') if __name__ == "__main__": |