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

Side by Side Diff: content/test/gpu/run_unittests.py

Issue 1896853003: Remove useless path additions of old Telemetry location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « content/test/gpu/run_gpu_test.py ('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 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 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 gpu_tests/ directory. 6 """This script runs unit tests of the code in the gpu_tests/ directory.
7 7
8 This script DOES NOT run tests. run_gpu_test does that. 8 This script DOES NOT run tests. run_gpu_test does that.
9 """ 9 """
10 10
11 import sys 11 import sys
12 12
13 from gpu_tests import path_util 13 from gpu_tests import path_util
14
15 path_util.SetupTelemetryPaths()
16
14 import gpu_project_config 17 import gpu_project_config
15 18
16 path_util.AddDirToPathIfNeeded(path_util.GetChromiumSrcDir(), 'tools',
17 'telemetry')
18
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 return unittest_runner.Run(gpu_project_config.CONFIG, no_browser=True) 23 return unittest_runner.Run(gpu_project_config.CONFIG, no_browser=True)
24 24
25 if __name__ == '__main__': 25 if __name__ == '__main__':
26 sys.exit(main()) 26 sys.exit(main())
OLDNEW
« no previous file with comments | « content/test/gpu/run_gpu_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698