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

Unified Diff: webkit/tools/layout_tests/test_types/fuzzy_image_diff.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/tools/layout_tests/layout_package/platform_utils_linux.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/test_types/fuzzy_image_diff.py
diff --git a/webkit/tools/layout_tests/test_types/fuzzy_image_diff.py b/webkit/tools/layout_tests/test_types/fuzzy_image_diff.py
index 4c5acaf14871e6fd252421e96811ca2cd434e158..579a30a7bd1ec2b076f58ee2dcf7eef09a88ff37 100644
--- a/webkit/tools/layout_tests/test_types/fuzzy_image_diff.py
+++ b/webkit/tools/layout_tests/test_types/fuzzy_image_diff.py
@@ -39,7 +39,8 @@ class FuzzyImageDiff(test_type_base.TestTypeBase):
failures.append(test_failures.FailureMissingImage(self))
# Run the fuzzymatcher
- r = subprocess.call(['fuzzymatch', test_args.png_path, expected_png_file])
+ r = subprocess.call([path_utils.GetPlatformUtil().FuzzyMatchBinaryPath(),
+ test_args.png_path, expected_png_file])
if r != 0:
failures.append(test_failures.FailureFuzzyFailure(self))
« no previous file with comments | « webkit/tools/layout_tests/layout_package/platform_utils_linux.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698