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

Unified Diff: tools/perf/ct_benchmarks_util.py

Issue 2876073003: Migrate cluster telemetry benchmarks to tools/perf/contrib/cluster_telemetry/ (Closed)
Patch Set: Remove BENCHMARKS_BLACK_LIST Created 3 years, 7 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
Index: tools/perf/ct_benchmarks_util.py
diff --git a/tools/perf/ct_benchmarks_util.py b/tools/perf/ct_benchmarks_util.py
deleted file mode 100755
index 580f45ba8eda14e5bd815397a791ce958da76bbd..0000000000000000000000000000000000000000
--- a/tools/perf/ct_benchmarks_util.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2015 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.
-
-
-def AddBenchmarkCommandLineArgs(parser):
- parser.add_option('--user-agent', action='store', type='string',
- default=None, help='Options are mobile and desktop.')
- parser.add_option('--archive-data-file', action='store', type='string',
- default=None,
- help='The location of the WPR JSON archive file.')
- parser.add_option('--urls-list', action='store', type='string',
- default=None,
- help='This is a comma separated list of urls. '
- 'Eg: http://www.google.com,http://www.gmail.com')
-
-
-def ValidateCommandLineArgs(parser, args):
- if not args.user_agent:
- parser.error('Please specify --user_agent.')
- if not args.archive_data_file:
- parser.error('Please specify --archive_data_file.')
- if not args.urls_list:
- parser.error('Please specify --urls_list.')

Powered by Google App Engine
This is Rietveld 408576698