Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: tools/perf/benchmarks/memory.py

Issue 2197153002: [tools/perf] Remove deprecated memory.* benchmarks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove from smoke tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/benchmarks/benchmark_smoke_unittest.py ('k') | tools/perf/measurements/memory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/memory.py
diff --git a/tools/perf/benchmarks/memory.py b/tools/perf/benchmarks/memory.py
deleted file mode 100644
index af68150e644d96d077ab117bf1a1f2a0a56ed08a..0000000000000000000000000000000000000000
--- a/tools/perf/benchmarks/memory.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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.
-
-from core import perf_benchmark
-
-from measurements import memory
-import page_sets
-from telemetry import benchmark
-
-
-@benchmark.Enabled('android')
-class MemoryMobile(perf_benchmark.PerfBenchmark):
- test = memory.Memory
- page_set = page_sets.MobileMemoryPageSet
-
- @classmethod
- def Name(cls):
- return 'memory.mobile_memory'
-
-
-# Disable on yosemite due to crbug.com/517806
-# Disable on reference due to crbug.com/539728
-# Disable on all Mac as it's also failing on 10.11 and retina.
-# crbug.com/555045
-# Disabling on WebView due to crbug.com/621489
-@benchmark.Disabled('mac', 'android-webview', 'reference')
-class MemoryTop7Stress(perf_benchmark.PerfBenchmark):
- """Use (recorded) real world web sites and measure memory consumption."""
- test = memory.Memory
- page_set = page_sets.Top7StressPageSet
-
- @classmethod
- def Name(cls):
- return 'memory.top_7_stress'
-
- @classmethod
- def ShouldDisable(cls, possible_browser):
- return cls.IsSvelte(possible_browser) # http://crbug.com/555092
-
« no previous file with comments | « tools/perf/benchmarks/benchmark_smoke_unittest.py ('k') | tools/perf/measurements/memory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698