Chromium Code Reviews| Index: webkit/tools/layout_tests/layout_package/path_utils.py |
| =================================================================== |
| --- webkit/tools/layout_tests/layout_package/path_utils.py (revision 5432) |
| +++ webkit/tools/layout_tests/layout_package/path_utils.py (working copy) |
| @@ -60,12 +60,12 @@ |
| return os.path.join(LayoutDataDir(), 'platform') |
| def WebKitPlatformResultsDir(): |
| - """Gets the full path to the platform results directory. Raises |
| + """Gets the full path to just above the platform results directory. Raises |
| PathNotFound if we're unable to find it.""" |
|
tony
2008/11/14 04:45:42
Nit: This method doesn't actually check to see if
|
| return os.path.join(LayoutDataDir(), 'LayoutTests', 'platform') |
| def PlatformResultsDir(platform): |
| - """Gets the full path to the results directory for this platform.""" |
| + """Gets the path to just above the results directory for this platform.""" |
| if platform.startswith('chromium'): |
| return ChromiumPlatformResultsDir() |
| return WebKitPlatformResultsDir() |