Changeset 124973 in webkit


Ignore:
Timestamp:
Aug 7, 2012, 7:52:53 PM (13 years ago)
Author:
dpranke@chromium.org
Message:

REGRESSION: PrettyPatchTest.test_pretty_diff_encodings has been failing on Chromium Windows
https://bugs.webkit.org/show_bug.cgi?id=93192

Unreviewed, build fix.

Disabling the test for now as PrettyPatch is just broken on win32.

  • Scripts/webkitpy/common/prettypatch_unittest.py:

(test_pretty_diff_encodings):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r124967 r124973  
     12012-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
    1132012-08-07  Dirk Pranke  <dpranke@chromium.org>
    214
  • trunk/Tools/Scripts/webkitpy/common/prettypatch_unittest.py

    r79046 r124973  
    2828
    2929import os.path
     30import sys
    3031import unittest
    3132
     
    7071            return
    7172
     73        if sys.platform == 'win32':
     74            # FIXME: disabled due to https://bugs.webkit.org/show_bug.cgi?id=93192
     75            return
     76
    7277        pretty_patch = PrettyPatch(Executive(), self._webkit_root())
    7378        pretty = pretty_patch.pretty_diff(self._diff_with_multiple_encodings)
Note: See TracChangeset for help on using the changeset viewer.