summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpiglit-summary-html.py3
-rw-r--r--templates/index.css4
-rw-r--r--templates/index_testrun.html1
3 files changed, 5 insertions, 3 deletions
diff --git a/piglit-summary-html.py b/piglit-summary-html.py
index d2fe5eed6..0f3e049de 100755
--- a/piglit-summary-html.py
+++ b/piglit-summary-html.py
@@ -62,7 +62,6 @@ ResultListItem = readfile(os.path.join(templatedir, 'result_listitem.html'))
ResultMString = readfile(os.path.join(templatedir, 'result_mstring.html'))
Index = readfile(os.path.join(templatedir, 'index.html'))
-IndexTestrun = readfile(os.path.join(templatedir, 'index_testrun.html'))
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'))
@@ -232,7 +231,7 @@ results is an array containing the top-level results dictionarys.
return IndexTestrunB % tr.__dict__
group = buildGroupSummary(0, summary.root, showcurrent)
- testruns = "".join([IndexTestrun % tr.__dict__ for tr in summary.testruns])
+ testruns = '<col/>' * len(summary.testruns)
testrunsb = "".join([testrunb(tr) for tr in summary.testruns])
tolist = SummaryPages.keys()
diff --git a/templates/index.css b/templates/index.css
index 0e48e1cba..27128e4c1 100644
--- a/templates/index.css
+++ b/templates/index.css
@@ -7,6 +7,10 @@ table {
width: 100%;
}
+col:not(:first-child) {
+ width: 50pt;
+}
+
tr {
padding: 4pt;
}
diff --git a/templates/index_testrun.html b/templates/index_testrun.html
deleted file mode 100644
index 1dc68ffee..000000000
--- a/templates/index_testrun.html
+++ /dev/null
@@ -1 +0,0 @@
-<col width="50pt" />