Changeset 267668 in webkit
- Timestamp:
- Sep 27, 2020, 11:48:00 AM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/port/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r267640 r267668 1 2020-09-27 Darin Adler <darin@apple.com> 2 3 Remove run-webkit-tests code that strips trailing spaces when comparing expected.txt files 4 https://bugs.webkit.org/show_bug.cgi?id=217041 5 6 Reviewed by Sam Weinig. 7 8 * Scripts/webkitpy/port/base.py: 9 (Port.do_text_results_differ): Removed code to strip the expected text before comparing. 10 1 11 2020-09-25 Darin Adler <darin@apple.com> 2 12 -
trunk/Tools/Scripts/webkitpy/port/base.py
r267640 r267668 301 301 302 302 def do_text_results_differ(self, expected_text, actual_text): 303 # Ignore trailing spaces in expected files. We will remove this code after removing trailing spaces from all expected.txt files.304 if not expected_text.startswith("<?xml"):305 expected_text = re.compile(" +$", re.MULTILINE).sub("", expected_text)306 303 return expected_text != actual_text 307 304
Note:
See TracChangeset
for help on using the changeset viewer.