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

Unified Diff: ct/py/ct_run_benchmark

Issue 1392173005: [CT] Update worker scripts to use new benchmarks and delete old benchmarks (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Remove staging code Created 5 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
« ct/py/create_page_set.py ('K') | « ct/py/create_page_set.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ct/py/ct_run_benchmark
diff --git a/ct/py/ct_run_benchmark b/ct/py/ct_run_benchmark
deleted file mode 100644
index 81f4253180900968f6b6fc25638e6a0466ebf3fa..0000000000000000000000000000000000000000
--- a/ct/py/ct_run_benchmark
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2014 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.
-
-# This script finds and executes benchmarks which live in Cluster Telemetry's
-# repository.
-
-import os
-import sys
-
-sys.path.append(
- os.path.join('/', 'b', 'storage', 'chromium', 'src', 'tools', 'telemetry'))
-
-from telemetry import benchmark_runner
-
-
-TOP_LEVEL_DIR = os.path.dirname(os.path.realpath(__file__))
-CT_BASE_DIR = os.path.join(TOP_LEVEL_DIR, 'benchmarks')
-sys.path.insert(0, os.path.join('benchmarks'))
-
-
-if __name__ == '__main__':
- config = benchmark_runner.ProjectConfig(
- top_level_dir=CT_BASE_DIR,
- benchmark_dirs=[CT_BASE_DIR])
- sys.exit(benchmark_runner.main(config))
« ct/py/create_page_set.py ('K') | « ct/py/create_page_set.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698