| 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))
|
|
|
|
|