Changeset 88780 in webkit


Ignore:
Timestamp:
Jun 13, 2011 11:31:18 PM (13 years ago)
Author:
hayato@chromium.org
Message:

2011-06-13 Hayato Ito <hayato@chromium.org>

Reviewed by Ojan Vafai.

[NRWT] Fix a WebKitDriver so that it returns an actual hash value if DRT returns that.
https://bugs.webkit.org/show_bug.cgi?id=59188

A current WebKitDriver doesn't try to return an actual hash value if DRT does not return an image.
WebKitDriver should always return an actual hash value if DRT returns that.

No tests since I'll add sample reftests to make sure mismatch reftests work later,
which should be in a separate patch.

  • Scripts/webkitpy/layout_tests/port/webkit.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r88775 r88780  
     12011-06-13  Hayato Ito  <hayato@chromium.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        [NRWT] Fix a WebKitDriver so that it returns an actual hash value if DRT returns that.
     6        https://bugs.webkit.org/show_bug.cgi?id=59188
     7
     8        A current WebKitDriver doesn't try to return an actual hash value if DRT does not return an image.
     9        WebKitDriver should always return an actual hash value if DRT returns that.
     10
     11        No tests since I'll add sample reftests to make sure mismatch reftests work later,
     12        which should be in a separate patch.
     13
     14        * Scripts/webkitpy/layout_tests/port/webkit.py:
     15
    1162011-06-13  Kent Tamura  <tkent@chromium.org>
    217
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py

    r87847 r88780  
    442442                image = block.decoded_content
    443443                actual_image_hash = block.content_hash
     444            elif block.content_hash:
     445                actual_image_hash = block.content_hash
    444446
    445447        error_lines = self._server_process.error.splitlines()
Note: See TracChangeset for help on using the changeset viewer.