summaryrefslogtreecommitdiff
path: root/piglit-summary-html.py
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2008-02-21 15:09:12 -0800
committerEric Anholt <eric@anholt.net>2008-02-21 15:10:48 -0800
commita1d9b5bb8bcbd809b009f9f39245a354bbea2c6a (patch)
treeab142d6b02cbfb1e5caf0f5bcd96b7121fc43687 /piglit-summary-html.py
parentbbddcae7302494e8fc3259f02d85ff4a63741ce4 (diff)
Fix path generation for test result html.
Diffstat (limited to 'piglit-summary-html.py')
-rwxr-xr-xpiglit-summary-html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/piglit-summary-html.py b/piglit-summary-html.py
index b35622f85..80a9a3e99 100755
--- a/piglit-summary-html.py
+++ b/piglit-summary-html.py
@@ -266,7 +266,7 @@ def main():
dirname = summaryDir + '/' + tr.codename
core.checkDir(dirname, False)
for test in summary.allTests():
- filename = dirname + testPathToHtmlFilename(test.path)
+ filename = dirname + '/' + testPathToHtmlFilename(test.path)
writeResultHtml(test, test.results[j], filename)
writefile(summaryDir + '/result.css', readfile(templatedir + 'result.css'))