Changeset 124973 in webkit
- Timestamp:
- Aug 7, 2012, 7:52:53 PM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r124967 r124973 1 2012-08-07 Dirk Pranke <dpranke@chromium.org> 2 3 REGRESSION: PrettyPatchTest.test_pretty_diff_encodings has been failing on Chromium Windows 4 https://bugs.webkit.org/show_bug.cgi?id=93192 5 6 Unreviewed, build fix. 7 8 Disabling the test for now as PrettyPatch is just broken on win32. 9 10 * Scripts/webkitpy/common/prettypatch_unittest.py: 11 (test_pretty_diff_encodings): 12 1 13 2012-08-07 Dirk Pranke <dpranke@chromium.org> 2 14 -
trunk/Tools/Scripts/webkitpy/common/prettypatch_unittest.py
r79046 r124973 28 28 29 29 import os.path 30 import sys 30 31 import unittest 31 32 … … 70 71 return 71 72 73 if sys.platform == 'win32': 74 # FIXME: disabled due to https://bugs.webkit.org/show_bug.cgi?id=93192 75 return 76 72 77 pretty_patch = PrettyPatch(Executive(), self._webkit_root()) 73 78 pretty = pretty_patch.pretty_diff(self._diff_with_multiple_encodings)
Note:
See TracChangeset
for help on using the changeset viewer.