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

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

Issue 616363002: Kill endure benchmark and all that related to it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes that remove --page-repeat Created 6 years, 2 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 | « no previous file | tools/perf/measurements/endure.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/endure.py
diff --git a/tools/perf/benchmarks/endure.py b/tools/perf/benchmarks/endure.py
deleted file mode 100644
index f9b8907bc884d51991fa4087a7afe96b6e000e0b..0000000000000000000000000000000000000000
--- a/tools/perf/benchmarks/endure.py
+++ /dev/null
@@ -1,69 +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.
-
-"""The Endure benchmarks measure memory performance over a period of time.
-
-In each Endure benchmark, one page action is performed repeatedly and memory
-usage is measured periodically. The specific page actions are defined in the
-page sets, and the statistics that are gathered are determined by the Endure
-measurement class.
-"""
-
-from measurements import endure
-import page_sets
-from telemetry import benchmark
-
-
-class _EndureBenchmark(benchmark.Benchmark):
- """Base class which sets options for endure benchmarks below."""
- test = endure.Endure
- # Default options for endure benchmarks. Could be overridden in subclasses.
- options = {
- # Depending on the page and the actions performed on the page,
- # 1000 iterations should be between 30 and 60 minutes.
- 'page_repeat': 1000,
- # One sample per 10 iterations -> 200 points per run.
- 'perf_stats_interval': 10
- }
-
-
-@benchmark.Disabled
-class EndureCalendarForwardBackward(_EndureBenchmark):
- page_set = page_sets.CalendarForwardBackwardPageSet
-
-
-@benchmark.Disabled
-class EndureBrowserControl(_EndureBenchmark):
- page_set = page_sets.BrowserControlPageSet
-
-
-@benchmark.Disabled
-class EndureBrowserControlClick(_EndureBenchmark):
- page_set = page_sets.BrowserControlClickPageSet
-
-
-@benchmark.Disabled
-class EndureGmailAltThreadlistConversation(_EndureBenchmark):
- page_set = page_sets.GmailAltThreadlistConversationPageSet
-
-
-@benchmark.Disabled
-class EndureGmailAltTwoLabels(_EndureBenchmark):
- page_set = page_sets.GmailAltTwoLabelsPageSet
-
-
-@benchmark.Disabled
-class EndureGmailExpandCollapseConversation(_EndureBenchmark):
- page_set = page_sets.GmailExpandCollapseConversationPageSet
-
-
-@benchmark.Disabled
-class EndureIndexedDBOffline(_EndureBenchmark):
- page_set = page_sets.IndexeddbOfflinePageSet
-
-
-@benchmark.Disabled
-class EndurePlusAltPostsPhotos(_EndureBenchmark):
- page_set = page_sets.PlusAltPostsPhotosPageSet
-
« no previous file with comments | « no previous file | tools/perf/measurements/endure.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698