diff options
author | skyostil@chromium.org <skyostil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-15 22:12:02 +0000 |
---|---|---|
committer | skyostil@chromium.org <skyostil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-15 22:12:02 +0000 |
commit | e23745cd214d79f6432623a339d9c899746afd11 (patch) | |
tree | 58497437a6963998c11ff441de33a62a96770b1c /tools | |
parent | 150ecfa9547e088dd96be84f88623dbd1b5f3b79 (diff) | |
download | chromium_src-e23745cd214d79f6432623a339d9c899746afd11.zip chromium_src-e23745cd214d79f6432623a339d9c899746afd11.tar.gz chromium_src-e23745cd214d79f6432623a339d9c899746afd11.tar.bz2 |
Re-enable key silk case benchmarks on Android
All the known issues with these telemetry benchmarks have been fixed.
BUG=355952
Review URL: https://codereview.chromium.org/279853002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270830 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/benchmarks/rasterize_and_record_micro.py | 10 | ||||
-rw-r--r-- | tools/perf/benchmarks/smoothness.py | 4 |
2 files changed, 5 insertions, 9 deletions
diff --git a/tools/perf/benchmarks/rasterize_and_record_micro.py b/tools/perf/benchmarks/rasterize_and_record_micro.py index fcf108c..a5e88a3 100644 --- a/tools/perf/benchmarks/rasterize_and_record_micro.py +++ b/tools/perf/benchmarks/rasterize_and_record_micro.py @@ -9,7 +9,7 @@ from telemetry import test # RasterizeAndRecord disabled on mac because of crbug.com/350684. # RasterizeAndRecord disabled on windows because of crbug.com/338057. -@test.Disabled('android', 'mac', 'win') # android tracked by crbug.com/371148 +@test.Disabled('mac', 'win') class RasterizeAndRecordMicroTop25(test.Test): """Measures rasterize and record performance on the top 25 web pages. @@ -18,7 +18,7 @@ class RasterizeAndRecordMicroTop25(test.Test): page_set = 'page_sets/top_25.py' -@test.Disabled('android', 'mac', 'win') # android tracked by crbug.com/371148 +@test.Disabled('mac', 'win') class RasterizeAndRecordMicroKeyMobileSites(test.Test): """Measures rasterize and record performance on the key mobile sites. @@ -27,7 +27,7 @@ class RasterizeAndRecordMicroKeyMobileSites(test.Test): page_set = 'page_sets/key_mobile_sites.py' -@test.Disabled('android', 'mac', 'win') +@test.Disabled('mac', 'win') class RasterizeAndRecordMicroKeySilkCases(test.Test): """Measures rasterize and record performance on the silk sites. @@ -36,7 +36,7 @@ class RasterizeAndRecordMicroKeySilkCases(test.Test): page_set = 'page_sets/key_silk_cases.py' -@test.Disabled('android', 'mac', 'win') +@test.Disabled('mac', 'win') class RasterizeAndRecordMicroFastPathKeySilkCases(test.Test): """Measures rasterize and record performance on the silk sites. @@ -50,7 +50,7 @@ class RasterizeAndRecordMicroFastPathKeySilkCases(test.Test): silk_flags.CustomizeBrowserOptionsForFastPath(options) -@test.Disabled('android', 'mac', 'win') +@test.Disabled('mac', 'win') class RasterizeAndRecordMicroFastPathGpuRasterizationKeySilkCases(test.Test): """Measures rasterize and record performance on the silk sites. diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py index 292ed60..341efa4 100644 --- a/tools/perf/benchmarks/smoothness.py +++ b/tools/perf/benchmarks/smoothness.py @@ -46,7 +46,6 @@ class SmoothnessToughAnimationCases(test.Test): page_set = 'page_sets/tough_animation_cases.py' -@test.Disabled('android') # crbug.com/355952 class SmoothnessKeySilkCases(test.Test): """Measures rendering statistics for the key silk cases without GPU rasterization @@ -55,7 +54,6 @@ class SmoothnessKeySilkCases(test.Test): page_set = 'page_sets/key_silk_cases.py' -@test.Disabled('android') # crbug.com/355952 class SmoothnessFastPathKeySilkCases(test.Test): """Measures rendering statistics for the key silk cases without GPU rasterization using bleeding edge rendering fast paths. @@ -90,7 +88,6 @@ class SmoothnessGpuRasterizationKeyMobileSites(test.Test): silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) -@test.Disabled('android') # crbug.com/355952 class SmoothnessGpuRasterizationKeySilkCases(test.Test): """Measures rendering statistics for the key silk cases with GPU rasterization """ @@ -101,7 +98,6 @@ class SmoothnessGpuRasterizationKeySilkCases(test.Test): silk_flags.CustomizeBrowserOptionsForGpuRasterization(options) -@test.Disabled('android') # crbug.com/355952 class SmoothnessFastPathGpuRasterizationKeySilkCases( SmoothnessGpuRasterizationKeySilkCases): """Measures rendering statistics for the key silk cases with GPU rasterization |