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)) |