Changeset 79181 in webkit


Ignore:
Timestamp:
Feb 20, 2011 9:48:13 PM (13 years ago)
Author:
dpranke@chromium.org
Message:

2011-02-20 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai.

test-webkitpy: stop skipping a bunch of tests on win32
https://bugs.webkit.org/show_bug.cgi?id=54788

  • Scripts/webkitpy/common/net/testoutputset_unittest.py:
  • Scripts/webkitpy/test/main.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r79176 r79181  
     12011-02-20  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        test-webkitpy: stop skipping a bunch of tests on win32
     6        https://bugs.webkit.org/show_bug.cgi?id=54788
     7
     8        * Scripts/webkitpy/common/net/testoutputset_unittest.py:
     9        * Scripts/webkitpy/test/main.py:
     10
    1112011-02-20  Dirk Pranke  <dpranke@chromium.org>
    212
  • trunk/Tools/Scripts/webkitpy/common/net/testoutputset_unittest.py

    r77780 r79181  
    2222# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2323# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     24
     25import sys
    2426
    2527from webkitpy.common.system.zip_mock import MockZip
     
    7375
    7476    def test_can_infer_platform_from_path_if_none_provided(self):
     77        # FIXME: unclear what the right behavior on win32 is.
     78        # https://bugs.webkit.org/show_bug.cgi?id=54525.
     79        if sys.platform == 'win32':
     80            return
     81
    7582        zip = MockZip()
    7683        zip.insert('platform/win/some-test-expected.png', '<image data>')
  • trunk/Tools/Scripts/webkitpy/test/main.py

    r78949 r79181  
    8484        if any([module_path.startswith(package) for package in [
    8585            'webkitpy.tool',
    86             'webkitpy.style',
    87             'webkitpy.common.net',
    8886            'webkitpy.common.checkout',
    8987            'webkitpy.common.config',
     
    9290
    9391        return module_path not in [
    94             # FIXME: Remove this when https://bugs.webkit.org/show_bug.cgi?id=54525 is resolved.
    95             'webkitpy.common.net.testoutputset_unittest',
    96 
    9792            # FIXME: This file also requires common.checkout to work
    9893            'webkitpy.layout_tests.deduplicate_tests_unittest',
    99 
    100             'webkitpy.common.prettypatch_unittest',
    101             'webkitpy.layout_tests.update_webgl_conformance_tests_unittest',
    102             'webkitpy.layout_tests.port.mac_unittest',
    103             'webkitpy.layout_tests.port.chromium_unittest',
    104             'webkitpy.layout_tests.port.mock_drt_unittest',
    105             'webkitpy.layout_tests.port.config_unittest',
    10694        ]
    10795
Note: See TracChangeset for help on using the changeset viewer.