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

Side by Side Diff: webkit/tools/layout_tests/layout_package/platform_utils_linux.py

Issue 14480: Pull in the fuzzy matcher binary path from its directory under third_party. (Closed)
Patch Set: Created 12 years 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 | « no previous file | webkit/tools/layout_tests/test_types/fuzzy_image_diff.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 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2008 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2008 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 """Platform-specific utility methods shared by several scripts.""" 6 """Platform-specific utility methods shared by several scripts."""
7 7
8 import os 8 import os
9 import re 9 import re
10 import subprocess 10 import subprocess
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 """Return the platform-specific binary path for our TestShell. 172 """Return the platform-specific binary path for our TestShell.
173 173
174 Args: 174 Args:
175 target: Build target mode (debug or release) 175 target: Build target mode (debug or release)
176 """ 176 """
177 # TODO(mmoss) - hard-coded to "Hammer" for now until I look into the scons 177 # TODO(mmoss) - hard-coded to "Hammer" for now until I look into the scons
178 # output directory logic (and how/if it will change once Linux supports 178 # output directory logic (and how/if it will change once Linux supports
179 # multiple debug/release targets). 179 # multiple debug/release targets).
180 return PathFromBase('chrome', 'Hammer', self.TestShellBinary()) 180 return PathFromBase('chrome', 'Hammer', self.TestShellBinary())
181 181
182 def FuzzyMatchBinaryPath(self):
183 """Return the path to the fuzzy matcher binary."""
184 return PathFromBase('third_party', 'fuzzymatch', 'fuzzymatch')
185
182 def TestListPlatformDir(self): 186 def TestListPlatformDir(self):
183 """Return the platform-specific directory for where the test lists live""" 187 """Return the platform-specific directory for where the test lists live"""
184 return 'linux' 188 return 'linux'
185 189
186 def PlatformDir(self): 190 def PlatformDir(self):
187 """Returns the most specific directory name where platform-specific 191 """Returns the most specific directory name where platform-specific
188 results live. 192 results live.
189 """ 193 """
190 return 'chromium-linux' 194 return 'chromium-linux'
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/layout_tests/test_types/fuzzy_image_diff.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698