Changeset 165460 in webkit


Ignore:
Timestamp:
Mar 11, 2014, 8:47:16 PM (11 years ago)
Author:
mmaxfield@apple.com
Message:

Some images are blank in the rebaseline server UI
https://bugs.webkit.org/show_bug.cgi?id=130104

Reviewed by Tim Horton.

Let the server check for images in the 'retries' directory
if it can't find an image otherwise.

  • Scripts/webkitpy/tool/servers/rebaselineserver.py:

(RebaselineHTTPRequestHandler.test_result):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r165457 r165460  
     12014-03-11  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Some images are blank in the rebaseline server UI
     4        https://bugs.webkit.org/show_bug.cgi?id=130104
     5
     6        Reviewed by Tim Horton.
     7
     8        Let the server check for images in the 'retries' directory
     9        if it can't find an image otherwise.
     10
     11        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
     12        (RebaselineHTTPRequestHandler.test_result):
     13
    1142014-03-11  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
    215
  • trunk/Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py

    r160848 r165460  
    281281
    282282        file_path = os.path.join(self.server.test_config.results_directory, file_name)
     283        if not os.path.isfile(file_path):
     284            file_path = os.path.join(self.server.test_config.results_directory, 'retries', file_name)
    283285
    284286        # Let results be cached for 60 seconds, so that they can be pre-fetched
Note: See TracChangeset for help on using the changeset viewer.