Commit 99307603 authored by marja@chromium.org's avatar marja@chromium.org

Test data output fix for Telemetry & Android: remove more special chars.

These seemed to make the graph-plotter frontend not work.

BUG=NONE

Review URL: https://codereview.chromium.org/11779042

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175525 0039d316-1c4b-4281-b951-d872f2087c98
parent 58886686
......@@ -18,8 +18,7 @@ RESULT_TYPES = {'unimportant': 'RESULT ',
def _EscapePerfResult(s):
"""Escapes |s| for use in a perf result."""
# Colons (:), equal signs (=) and slashes (/) are not allowed.
return re.sub('[\:|=/]', '_', s)
return re.sub('[\:|=/#&]', '_', s)
def GeomMeanAndStdDevFromHistogram(histogram_json):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment