summaryrefslogtreecommitdiff
path: root/piglit-summary-html.py
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-02-24 10:18:52 -0800
committerKenneth Graunke <kenneth@whitecape.org>2013-05-08 11:35:04 -0700
commita2257cbf650c48242baea28f5022e85402400cca (patch)
tree1cecde2332bacf744f11589f6c2d29233ac3f9d6 /piglit-summary-html.py
parent38c7621b02e77a4e5470b34b58d4b92b035e5951 (diff)
html: Remove the index_groupgroup template.
It was entirely empty. Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'piglit-summary-html.py')
-rwxr-xr-xpiglit-summary-html.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/piglit-summary-html.py b/piglit-summary-html.py
index 263a4f0cf..d2fe5eed6 100755
--- a/piglit-summary-html.py
+++ b/piglit-summary-html.py
@@ -67,7 +67,6 @@ IndexTestrunB = readfile(os.path.join(templatedir, 'index_testrunb.html'))
IndexTestrunBHref = readfile(os.path.join(templatedir, 'index_testrunb_href.html'))
IndexGroup = readfile(os.path.join(templatedir, 'index_group.html'))
IndexGroupTestrun = readfile(os.path.join(templatedir, 'index_group_testrun.html'))
-IndexGroupGroup = readfile(os.path.join(templatedir, 'index_groupgroup.html'))
IndexTest = readfile(os.path.join(templatedir, 'index_test.html'))
IndexTestTestrun = readfile(os.path.join(templatedir, 'index_test_testrun.html'))
@@ -205,9 +204,7 @@ def buildGroupSummary(indent, groupsummary, showcurrent):
for n in names:
child = groupsummary.children[n]
if isinstance(child, framework.summary.GroupSummary):
- items = items + IndexGroupGroup % {
- 'group': buildGroupSummary(indent + indent_inc, child, showcurrent)
- }
+ items = items + buildGroupSummary(indent + indent_inc, child, showcurrent)
else:
items = items + buildTestSummary(indent + indent_inc, child)