summaryrefslogtreecommitdiffstats
path: root/tools/perf/benchmarks/media.py
diff options
context:
space:
mode:
authortonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-06 15:21:20 +0000
committertonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-06 15:21:20 +0000
commit423d3ee44cb11472ec24c048cc3ae1cf5494416d (patch)
treee6fe74b98d26c477e4ed24f3999c3d7dc11d62ae /tools/perf/benchmarks/media.py
parentf4ed3e9b06ca8b93a02a8a3f0adf4ff7fc7bfa29 (diff)
downloadchromium_src-423d3ee44cb11472ec24c048cc3ae1cf5494416d.zip
chromium_src-423d3ee44cb11472ec24c048cc3ae1cf5494416d.tar.gz
chromium_src-423d3ee44cb11472ec24c048cc3ae1cf5494416d.tar.bz2
[Telemetry] Disable media_cns_cases on Android.
Linux is a casualty because we don't yet have a clean way to differentiate. BUG=326154 NOTRY=True TBR=shadi@chromium.org Review URL: https://codereview.chromium.org/104653010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239221 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/perf/benchmarks/media.py')
-rw-r--r--tools/perf/benchmarks/media.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/benchmarks/media.py b/tools/perf/benchmarks/media.py
index 8ef0619..7c4d165 100644
--- a/tools/perf/benchmarks/media.py
+++ b/tools/perf/benchmarks/media.py
@@ -1,6 +1,9 @@
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+
+import sys
+
from measurements import media
from telemetry import test
@@ -12,6 +15,7 @@ class Media(test.Test):
class MediaNetworkSimulation(test.Test):
"""Obtains media metrics under different network simulations."""
test = media.Media
+ enabled = not sys.platform.startswith('linux')
page_set = 'page_sets/media_cns_cases.json'
class MediaAndroid(test.Test):