diff options
author | Nicolai Haehnle <nhaehnle@gmail.com> | 2008-08-27 22:32:41 +0200 |
---|---|---|
committer | Nicolai Haehnle <nhaehnle@gmail.com> | 2008-08-27 22:32:41 +0200 |
commit | a6ee98404fbe63d19d9097641497d9e52e3d45e0 (patch) | |
tree | 683c00587fe7288296ce9f057281c2512b55d5af /templates | |
parent | 59750efad2071cbed9422baa700721c3935d96c8 (diff) |
piglit-summary-html.py: Add glxinfo/lspci output to HTML summaries
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index_testrunb.html | 2 | ||||
-rw-r--r-- | templates/testrun.html | 22 |
2 files changed, 23 insertions, 1 deletions
diff --git a/templates/index_testrunb.html b/templates/index_testrunb.html index b4ef7ecca..ddee9cf0d 100644 --- a/templates/index_testrunb.html +++ b/templates/index_testrunb.html @@ -1 +1 @@ -<td class="head"><b>%(name)s</b></td> +<td class="head"><b>%(name)s</b><br/>(<a href="%(codename)s/index.html">info</a>)</td> diff --git a/templates/testrun.html b/templates/testrun.html new file mode 100644 index 000000000..a04ec0d01 --- /dev/null +++ b/templates/testrun.html @@ -0,0 +1,22 @@ +<html> + <head> + <title>%(name)s - System info</title> + <link rel="stylesheet" href="../result.css"/> + </head> + <body> + <h1>System info for %(name)s</h1> + <p> + <a href="../index.html">Back to summary</a> + </p> + <table> + <tr class="head"> + <th>Detail</th> + <th>Value</th> + </tr> + %(details)s + </table> + <p> + <a href="../index.html">Back to summary</a> + </p> + </body> +</html> |