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

Side by Side Diff: tools/perf/run_tests

Issue 2824053002: [tools/perf] Remove default values of benchmark_dirs and top_level_dir in chromium_config module (R… (Closed)
Patch Set: Fix referencess Created 3 years, 8 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/run_telemetry_tests ('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 2013 The Chromium Authors. All rights reserved.
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 16 from core import path_util
17 17
18 path_util.AddTelemetryToPath() 18 path_util.AddTelemetryToPath()
19 from telemetry.testing import unittest_runner 19 from telemetry.testing import unittest_runner
20 20
21 21
22 def main(): 22 def main():
23 project_config = chromium_config.ChromiumConfig() 23 project_config = chromium_config.ChromiumConfig(
24 top_level_dir=path_util.GetPerfDir())
24 return unittest_runner.Run(project_config) 25 return unittest_runner.Run(project_config)
25 26
26 if __name__ == '__main__': 27 if __name__ == '__main__':
27 sys.exit(main()) 28 sys.exit(main())
OLDNEW
« no previous file with comments | « tools/perf/run_telemetry_tests ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698