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

Side by Side Diff: tools/telemetry/telemetry/test_runner.py

Issue 319813004: [Telemetry] Update copyright header style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove stray change Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/telemetry/telemetry/test.py ('k') | tools/telemetry/telemetry/unittest/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Parses the command line, discovers the appropriate tests, and runs them. 5 """Parses the command line, discovers the appropriate tests, and runs them.
6 6
7 Handles test configuration, but all the logic for 7 Handles test configuration, but all the logic for
8 actually running the test is in Test and PageRunner.""" 8 actually running the test is in Test and PageRunner."""
9 9
10 import inspect 10 import inspect
11 import json 11 import json
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 276
277 # Parse and run the command. 277 # Parse and run the command.
278 parser = command.CreateParser() 278 parser = command.CreateParser()
279 command.AddCommandLineArgs(parser) 279 command.AddCommandLineArgs(parser)
280 options, args = parser.parse_args() 280 options, args = parser.parse_args()
281 if commands: 281 if commands:
282 args = args[1:] 282 args = args[1:]
283 options.positional_args = args 283 options.positional_args = args
284 command.ProcessCommandLineArgs(parser, options) 284 command.ProcessCommandLineArgs(parser, options)
285 return command().Run(options) 285 return command().Run(options)
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/test.py ('k') | tools/telemetry/telemetry/unittest/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698