aboutsummaryrefslogtreecommitdiff
path: root/crosperf
diff options
context:
space:
mode:
authorLuis Lozano <llozano@chromium.org>2015-03-26 11:11:06 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-03-26 21:26:09 +0000
commit0e2d9a0bafc6bff6a53ca4ddf779715994f28ea8 (patch)
treefa1f2a2c656cf5a84ccc59a2b05c238695302f0b /crosperf
parent96d936c087ef7a6b628f305b45f57c7a9ddd7994 (diff)
downloadtoolchain-utils-0e2d9a0bafc6bff6a53ca4ddf779715994f28ea8.tar.gz
Remove deprecated Telemetry benchmarks.
A bunch of benchmarks listed in our suites have been removed from Telemetry. Stop trying to use them. BUG=None TEST=Verified by hand Change-Id: Ic624c1867f6129650f9a02f7325d94d7abb970ee Reviewed-on: https://chrome-internal-review.googlesource.com/210560 Commit-Queue: Luis Lozano <llozano@chromium.org> Tested-by: Luis Lozano <llozano@chromium.org> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf')
-rw-r--r--crosperf/experiment_factory.py18
1 files changed, 11 insertions, 7 deletions
diff --git a/crosperf/experiment_factory.py b/crosperf/experiment_factory.py
index 0ec38dd5..a03bbcc8 100644
--- a/crosperf/experiment_factory.py
+++ b/crosperf/experiment_factory.py
@@ -4,7 +4,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""A module to generate experments."""
+"""A module to generate experiments."""
import os
import re
@@ -36,8 +36,7 @@ telemetry_perfv2_tests = [ 'dromaeo.domcoreattr',
'sunspider',
]
-telemetry_pagecycler_tests = [ 'page_cycler.indexed_db.basic_insert',
- 'page_cycler.bloat',
+telemetry_pagecycler_tests = [
'page_cycler.dhtml',
'page_cycler.intl_ar_fa_he',
'page_cycler.intl_es_fr_pt-BR',
@@ -49,22 +48,27 @@ telemetry_pagecycler_tests = [ 'page_cycler.indexed_db.basic_insert',
'page_cycler.netsim.top_10',
'page_cycler.tough_layout_cases',
'page_cycler.typical_25',
+# Following benchmarks are now deprecated in Telemetry:
+# 'page_cycler.indexed_db.basic_insert',
+# 'page_cycler.bloat',
]
-telemetry_toolchain_perf_tests = [ 'canvasmark',
- 'jsgamebench',
+telemetry_toolchain_perf_tests = [
'dromaeo.domcoremodify',
- 'page_cycler.bloat',
'page_cycler.intl_es_fr_pt-BR',
'page_cycler.intl_hi_ru',
'page_cycler.intl_ja_zh',
'page_cycler.intl_ko_th_vi',
'page_cycler.netsim.top_10',
'page_cycler.typical_25',
- 'peacekeeper.html',
'robohornet_pro',
'spaceport',
'tab_switching.top_10',
+# Following benchmarks are now deprecated in Telemetry:
+# 'canvasmark',
+# 'jsgamebench',
+# 'page_cycler.bloat',
+# 'peacekeeper.html',
]
class ExperimentFactory(object):