| Index: build/android/pylib/perf_tests_helper.py
|
| diff --git a/build/android/pylib/perf_tests_helper.py b/build/android/pylib/perf_tests_helper.py
|
| index ca9023b679393c4c6df7e5e73d39d7c259d8a9a4..bec92a20d2a1bcb308322ba658d08b5c7e304692 100644
|
| --- a/build/android/pylib/perf_tests_helper.py
|
| +++ b/build/android/pylib/perf_tests_helper.py
|
| @@ -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):
|
|
|