OLD | NEW |
1 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2009 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 """This package contains utility methods for manipulating paths and | 5 """This package contains utility methods for manipulating paths and |
6 filenames for test results and baselines. It also contains wrappers | 6 filenames for test results and baselines. It also contains wrappers |
7 of a few routines in platform_utils.py so that platform_utils.py can | 7 of a few routines in platform_utils.py so that platform_utils.py can |
8 be considered a 'protected' package - i.e., this file should be | 8 be considered a 'protected' package - i.e., this file should be |
9 the only file that ever includes platform_utils. This leads to | 9 the only file that ever includes platform_utils. This leads to |
10 us including a few things that don't really have anything to do | 10 us including a few things that don't really have anything to do |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 def FuzzyMatchPath(): | 363 def FuzzyMatchPath(): |
364 return platform_utils.FuzzyMatchPath() | 364 return platform_utils.FuzzyMatchPath() |
365 | 365 |
366 | 366 |
367 def ShutDownHTTPServer(server_pid): | 367 def ShutDownHTTPServer(server_pid): |
368 return platform_utils.ShutDownHTTPServer(server_pid) | 368 return platform_utils.ShutDownHTTPServer(server_pid) |
369 | 369 |
370 | 370 |
371 def KillAllTestShells(): | 371 def KillAllTestShells(): |
372 platform_utils.KillAllTestShells() | 372 platform_utils.KillAllTestShells() |
OLD | NEW |