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

Side by Side Diff: tools/perf/run_telemetry_tests

Issue 1579743002: [Telemetry] Update telemetry_unittests to use tools/perf/run_telemetry_tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update tools/perf/record_wpr Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « tools/perf/record_wpr ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2015 The Chromium Authors. All rights reserved.
eakuefner 2016/01/13 02:19:37 2016
nednguyen 2016/01/13 03:03:14 Done.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """This script runs unit tests of the code in the perf directory. 6 """This script runs unit tests of the code in the perf directory.
7 7
8 This script DOES NOT run benchmarks. run_benchmark does that. 8 This script DOES NOT run benchmarks. run_benchmark does that.
9 """ 9 """
10 10
11 import os 11 import os
12 import subprocess 12 import subprocess
13 import sys 13 import sys
14 14
15 from chrome_telemetry_build import chromium_config 15 from chrome_telemetry_build import chromium_config
16 from core import path_util
17 16
18 sys.path.append(path_util.GetTelemetryDir()) 17 _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.
18
19 sys.path.append(chromium_config.GetTelemetryDir())
19 from telemetry.testing import unittest_runner 20 from telemetry.testing import unittest_runner
20 21
22
21 def main(): 23 def main():
22 project_config = chromium_config.ChromiumConfig() 24 project_config = chromium_config.ChromiumConfig(
25 top_level_dir=chromium_config.GetTelemetryDir())
23 return unittest_runner.Run(project_config) 26 return unittest_runner.Run(project_config)
24 27
25 if __name__ == '__main__': 28 if __name__ == '__main__':
26 sys.exit(main()) 29 sys.exit(main())
OLDNEW
« no previous file with comments | « tools/perf/record_wpr ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698