Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4333)

Unified Diff: build/android/generate_emma_html.py

Issue 2421373002: Output coverage reports in UTF8. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/generate_emma_html.py
diff --git a/build/android/generate_emma_html.py b/build/android/generate_emma_html.py
index 34121fdbdf2bb0d0ceec4534f7d25e8a1c2cd46f..dab3992c45abd5f88e2942f96734ade8f27d77cb 100755
--- a/build/android/generate_emma_html.py
+++ b/build/android/generate_emma_html.py
@@ -90,7 +90,8 @@ def main():
input_args.append('-in')
input_args.append(f)
- output_args = ['-Dreport.html.out.file', options.output]
+ output_args = ['-Dreport.html.out.file', options.output,
+ '-Dreport.html.out.encoding', 'UTF-8']
source_args = ['-sp', ','.join(sources)]
exit_code = cmd_helper.RunCmd(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698