summaryrefslogtreecommitdiffstats
path: root/tools/chrome_proxy
diff options
context:
space:
mode:
authornednguyen <nednguyen@google.com>2014-10-14 14:49:50 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-14 21:50:29 +0000
commit75284a057d8f2ffeb392fc455e0cc9d8892709fe (patch)
treef894f7559aebcbd22d052e1ced0c83961106cbc8 /tools/chrome_proxy
parente530aa74d7615e92810410b451471802cd79edda (diff)
downloadchromium_src-75284a057d8f2ffeb392fc455e0cc9d8892709fe.zip
chromium_src-75284a057d8f2ffeb392fc455e0cc9d8892709fe.tar.gz
chromium_src-75284a057d8f2ffeb392fc455e0cc9d8892709fe.tar.bz2
[Telemetry] Rename test_runner --> benchmark_runner
BUG=418278 Review URL: https://codereview.chromium.org/656463005 Cr-Commit-Position: refs/heads/master@{#299560}
Diffstat (limited to 'tools/chrome_proxy')
-rwxr-xr-xtools/chrome_proxy/run_benchmark6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/chrome_proxy/run_benchmark b/tools/chrome_proxy/run_benchmark
index e1c0122..fd3ebeb 100755
--- a/tools/chrome_proxy/run_benchmark
+++ b/tools/chrome_proxy/run_benchmark
@@ -9,11 +9,11 @@ import sys
sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'telemetry'))
sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'perf'))
-from telemetry import test_runner
+from telemetry import benchmark_runner
from telemetry.core import environment
if __name__ == '__main__':
base_dir = os.path.dirname(os.path.realpath(__file__))
- test_runner.config = environment.Environment([base_dir])
- sys.exit(test_runner.main())
+ benchmark_runner.config = environment.Environment([base_dir])
+ sys.exit(benchmark_runner.main())