summaryrefslogtreecommitdiff
path: root/piglit-summary-html.py
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2011-08-08 09:04:00 -0700
committerPaul Berry <stereotype441@gmail.com>2011-08-11 13:09:30 -0700
commitda3126ce20538c0906226c62c089be4965aa2e41 (patch)
tree56062c3cc2ed180bcc72b803606352a7360f229e /piglit-summary-html.py
parent4da714cd47e8a993ce26a572dd05fe8107950d46 (diff)
Changed piglit-summary-html to explicitly encode its output as UTF-8.
Previously piglit-summary-html didn't explicitly encode its output at all--it relied on the default behavior of the Python file.write() method (which, in Python 2.x, is to write 8-bit strings verbatim and to encode unicode strings using ASCII). This meant that if a non-ASCII character appeared in any of the test data, piglit-summary-html would fail with an exception. This patch changes piglit-summary-html to explicitly encode its output using UTF-8. It also updates all of the HTML templates to specify UTF-8 as the encoding, so that when results are viewed in a web browser, non-ASCII characters will display correctly.
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 63d8b60b..726319cf 100755
--- a/piglit-summary-html.py
+++ b/piglit-summary-html.py
@@ -50,7 +50,7 @@ def readfile(filename):
def writefile(filename, text):
f = open(filename, "w")
- f.write(text)
+ f.write(text.encode('utf-8'))
f.close()
templatedir = os.path.join(os.path.dirname(__file__), 'templates')