summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authortonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 01:27:51 +0000
committertonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 01:27:51 +0000
commit0b3f50aa445d4b2b68c80c4750bf276b9dd07960 (patch)
tree611ac9671d9df66d8682c7487417bb843dab61e8 /tools
parente3e5eb1dba7fa51791a0e17f75d440f5c2139929 (diff)
downloadchromium_src-0b3f50aa445d4b2b68c80c4750bf276b9dd07960.zip
chromium_src-0b3f50aa445d4b2b68c80c4750bf276b9dd07960.tar.gz
chromium_src-0b3f50aa445d4b2b68c80c4750bf276b9dd07960.tar.bz2
[Telemetry] Disable benchmarks that include key_silk_cases on android.
This CL should be reverted once we've fixed the underlying issue. BUG=355952 TBR=dtu@chromium.org NOTRY=True Review URL: https://codereview.chromium.org/273533002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268652 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/benchmarks/rasterize_and_record_micro.py6
-rw-r--r--tools/perf/benchmarks/smoothness.py4
-rw-r--r--tools/perf/benchmarks/thread_times.py4
3 files changed, 10 insertions, 4 deletions
diff --git a/tools/perf/benchmarks/rasterize_and_record_micro.py b/tools/perf/benchmarks/rasterize_and_record_micro.py
index a5e88a3..e5d7f94 100644
--- a/tools/perf/benchmarks/rasterize_and_record_micro.py
+++ b/tools/perf/benchmarks/rasterize_and_record_micro.py
@@ -27,7 +27,7 @@ class RasterizeAndRecordMicroKeyMobileSites(test.Test):
page_set = 'page_sets/key_mobile_sites.py'
-@test.Disabled('mac', 'win')
+@test.Disabled('android', '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('mac', 'win')
+@test.Disabled('android', '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('mac', 'win')
+@test.Disabled('android', '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 f4fa52d..77905a2 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -45,6 +45,7 @@ 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
@@ -53,6 +54,7 @@ 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.
@@ -85,6 +87,7 @@ 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
"""
@@ -95,6 +98,7 @@ 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
diff --git a/tools/perf/benchmarks/thread_times.py b/tools/perf/benchmarks/thread_times.py
index a1fcd53..00e49bb 100644
--- a/tools/perf/benchmarks/thread_times.py
+++ b/tools/perf/benchmarks/thread_times.py
@@ -7,6 +7,7 @@ from benchmarks import silk_flags
from measurements import thread_times
+@test.Disabled('android') # crbug.com/355952
class ThreadTimesKeySilkCases(test.Test):
"""Measures timeline metrics while performing smoothness action on key silk
cases."""
@@ -15,6 +16,7 @@ class ThreadTimesKeySilkCases(test.Test):
options = {"report_silk_results": True}
+@test.Disabled('android') # crbug.com/355952
class ThreadTimesFastPathKeySilkCases(test.Test):
"""Measures timeline metrics while performing smoothness action on key silk
cases using bleeding edge rendering fast paths."""
@@ -53,4 +55,4 @@ class ThreadTimesPolymer(test.Test):
Polymer cases."""
test = thread_times.ThreadTimes
page_set = "page_sets/polymer.py"
- options = { 'report_silk_results': True } \ No newline at end of file
+ options = { 'report_silk_results': True }