Tools/ChangeLog

 12011-11-29 Hayato Ito <hayato@chromium.org>
 2
 3 Skip writing the result of diff_image since mac port doesn't implement diff_image.
 4 https://bugs.webkit.org/show_bug.cgi?id=73381
 5
 6 This is a quick fix for breakage of tests on mac port. We should implement diff_image later on mac port.
 7
 8 Reviewed by NOBODY (OOPS!).
 9
 10 * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
 11 (write_test_result):
 12
1132011-11-29 Ojan Vafai <ojan@chromium.org>
214
315 List of builders in the flakiness dashboard is out of date

Tools/Scripts/webkitpy/layout_tests/controllers/test_result_writer.py

@@def write_test_result(port, test_name, driver_output,
7171 # FIXME: We should always have 2 images here.
7272 if driver_output.image and expected_driver_output.image:
7373 image_diff = port.diff_image(driver_output.image, expected_driver_output.image)[0]
74  writer.write_image_diff_files(image_diff)
 74 # Mac port returns 'None' since it doesn't implement diff_image.
 75 if image_diff is not None:
 76 writer.write_image_diff_files(image_diff)
7577 writer.copy_file(failure.reference_filename)
7678 elif isinstance(failure, test_failures.FailureReftestMismatchDidNotOccur):
7779 writer.write_image_files(driver_output.image, expected_image=None)