diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2013-05-01 17:48:33 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2013-05-31 14:11:21 -0700 |
commit | a4c72292ba80fd221fbc329d79685fa7b92e436e (patch) | |
tree | 666ab0d4e217e073ed490cf996d4ce5b8620460d /templates | |
parent | 2c0f2210100b4552ee8d2afb76e746df84afb57a (diff) |
summary: Build subdirectories for subtest result pages
With 10,000+ tests all living in the same folder it can be hard to
identify a single file, especially when trying to work with the HTML
generation itself. This patch changes the behavior so that each test
has a directory tree for the group results with tests under it (ie
spec/GLSL 1.0/foo/bar/test.html)
V3: - Correct some spelling errors/remove excess comments
Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
Reviewed-By: Aaron Watry <awatry@gmail.com>
Reviewed-By: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/test_result.mako | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/test_result.mako b/templates/test_result.mako index b4c692185..c0e0fcab1 100644 --- a/templates/test_result.mako +++ b/templates/test_result.mako @@ -5,7 +5,7 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>${testname} - Details</title> - <link rel="stylesheet" href="../result.css" type="text/css" /> + <link rel="stylesheet" href="${css}" type="text/css" /> </head> <body> <h1>Results for ${testname}</h1> @@ -14,7 +14,7 @@ <p><b>Status:</b> ${status}</p> <p><b>Result:</b> ${status}</p> </div> - <p><a href="../index.html">Back to summary</a></p> + <p><a href="${index}">Back to summary</a></p> <h2>Details</h2> <table> <tr> @@ -42,6 +42,6 @@ </td> </tr> </table> - <p><a href="../index.html">Back to summary</a></p> + <p><a href="${index}">Back to summary</a></p> </body> </html> |