Changeset 165460 in webkit
- Timestamp:
- Mar 11, 2014, 8:47:16 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r165457 r165460 1 2014-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 1 14 2014-03-11 Gustavo Noronha Silva <gustavo.noronha@collabora.com> 2 15 -
trunk/Tools/Scripts/webkitpy/tool/servers/rebaselineserver.py
r160848 r165460 281 281 282 282 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) 283 285 284 286 # Let results be cached for 60 seconds, so that they can be pre-fetched
Note:
See TracChangeset
for help on using the changeset viewer.