Chromium Code Reviews| Index: tools/perf/run_telemetry_tests |
| diff --git a/tools/perf/run_tests b/tools/perf/run_telemetry_tests |
| similarity index 62% |
| copy from tools/perf/run_tests |
| copy to tools/perf/run_telemetry_tests |
| index 32a2b840df6d4f2adb99f715ce5ffd1ecb4df2f3..c99e2e7e1b0a4d59c9ae8d2d1a4cb6a4fc528936 100755 |
| --- a/tools/perf/run_tests |
| +++ b/tools/perf/run_telemetry_tests |
| @@ -1,5 +1,5 @@ |
| #!/usr/bin/env python |
| -# Copyright 2013 The Chromium Authors. All rights reserved. |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
|
eakuefner
2016/01/13 02:19:37
2016
nednguyen
2016/01/13 03:03:14
Done.
|
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| @@ -13,13 +13,16 @@ import subprocess |
| import sys |
| from chrome_telemetry_build import chromium_config |
| -from core import path_util |
| -sys.path.append(path_util.GetTelemetryDir()) |
| +_TELEMETRY_DIR = os.path.join(os.path.dirname(__file__), '..', 'telemetry') |
|
eakuefner
2016/01/13 02:19:36
You don't need this, right?
nednguyen
2016/01/13 03:03:14
Done.
|
| + |
| +sys.path.append(chromium_config.GetTelemetryDir()) |
| from telemetry.testing import unittest_runner |
| + |
| def main(): |
| - project_config = chromium_config.ChromiumConfig() |
| + project_config = chromium_config.ChromiumConfig( |
| + top_level_dir=chromium_config.GetTelemetryDir()) |
| return unittest_runner.Run(project_config) |
| if __name__ == '__main__': |