| 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 d227d4153ffe45425f0341d904ec1ea37919f1ad..68a707f8c6a42f7840e940f5c55ff496fc12c722 100644
|
| --- a/build/android/pylib/perf_tests_helper.py
|
| +++ b/build/android/pylib/perf_tests_helper.py
|
| @@ -18,9 +18,8 @@ RESULT_TYPES = {'unimportant': 'RESULT ',
|
|
|
| def _EscapePerfResult(s):
|
| """Escapes |s| for use in a perf result."""
|
| - # Colons (:) and equal signs (=) are not allowed, and we chose an arbitrary
|
| - # limit of 40 chars.
|
| - return re.sub(':|=', '_', s[:40])
|
| + # Colons (:) and equal signs (=) are not allowed.
|
| + return re.sub(':|=', '_', s)
|
|
|
|
|
| def GeomMeanAndStdDevFromHistogram(histogram_json):
|
|
|