Home | History | Annotate | Download | only in layout_tests

Lines Matching refs:updates

32 to the specified destination path. Updates all references in tests and resources to reflect the new
33 location. Also moves any corresponding platform-specific expected results and updates the test
144 """Clones a TestExpectationLine object and updates the clone to apply to the specified
157 """Updates all test expectations that are affected by the move.
225 updates = {}
239 updates[file_path] = local_updates
240 return updates
242 def _update_file(self, path, updates):
246 for target in updates.keys():
248 contents = regex.sub(r'\1%s\2' % updates[target], contents)
262 updates = self._get_all_updated_references(references)
263 _log.info('Updating references in %s files' % len(updates))
265 for file_path in updates.keys():
266 self._update_file(file_path, updates[file_path])
268 if count % 1000 == 0 or count == len(updates):