Commit 4a8318cd authored by Ned Nguyen's avatar Ned Nguyen Committed by Commit Bot

Update supported platforms of startup.mobile to only support mobile

Note: the old Telemetry decorators no longer work on benchmarks

TBR=pasko@chromium.org
NOTRY=true  # flake

Bug: 760498
Change-Id: I514ebefb488db9934adcdde77c2f307a571183d6
Reviewed-on: https://chromium-review.googlesource.com/1215244
Commit-Queue: Ned Nguyen <nednguyen@google.com>
Reviewed-by: default avatarNed Nguyen <nednguyen@google.com>
Cr-Commit-Position: refs/heads/master@{#589797}
parent 95c28adc
...@@ -13,7 +13,6 @@ from telemetry.timeline import chrome_trace_category_filter ...@@ -13,7 +13,6 @@ from telemetry.timeline import chrome_trace_category_filter
from telemetry.util import wpr_modes from telemetry.util import wpr_modes
from telemetry.web_perf import timeline_based_measurement from telemetry.web_perf import timeline_based_measurement
from telemetry import benchmark from telemetry import benchmark
from telemetry import decorators
from telemetry import story as story_module from telemetry import story as story_module
# The import error below is mysterious: it produces no detailed error message, # The import error below is mysterious: it produces no detailed error message,
...@@ -161,9 +160,9 @@ class _MobileStartupStorySet(story_module.StorySet): ...@@ -161,9 +160,9 @@ class _MobileStartupStorySet(story_module.StorySet):
# sending Android intents. The benchmark is disabled on non-Android to avoid # sending Android intents. The benchmark is disabled on non-Android to avoid
# failure at benchmark_smoke_unittest.BenchmarkSmokeTest. # failure at benchmark_smoke_unittest.BenchmarkSmokeTest.
@benchmark.Info(emails=['pasko@chromium.org', @benchmark.Info(emails=['pasko@chromium.org',
'chrome-android-perf-status@chromium.org']) 'chrome-android-perf-status@chromium.org'])
@decorators.Disabled('linux', 'mac', 'win')
class MobileStartupBenchmark(perf_benchmark.PerfBenchmark): class MobileStartupBenchmark(perf_benchmark.PerfBenchmark):
SUPPORTED_PLATFORMS = [story_module.expectations.ALL_MOBILE]
# Set |pageset_repeat| to 1 to control the amount of iterations from the # Set |pageset_repeat| to 1 to control the amount of iterations from the
# stories. This would avoid setting per-story pageset_repeat at bisect time. # stories. This would avoid setting per-story pageset_repeat at bisect time.
......
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