⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 99791 in webkit


Ignore:
Timestamp:
Nov 9, 2011, 5:21:36 PM (15 years ago)
Author:
eric@webkit.org
Message:

Remove the concept of platform-dependent unittests
https://bugs.webkit.org/show_bug.cgi?id=71963

Unreviewed. Fix test-webkitpy on cygwin.

  • Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r99786 r99791  
     12011-11-09  Eric Seidel  <eric@webkit.org>
     2
     3        Remove the concept of platform-dependent unittests
     4        https://bugs.webkit.org/show_bug.cgi?id=71963
     5
     6        Unreviewed.  Fix test-webkitpy on cygwin.
     7
     8        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
     9
    1102011-11-09  Dana Jansens  <danakj@chromium.org>
    211
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py

    r99785 r99791  
    7474        setup_mount = self._mock_path_from_chromium_base("third_party", "cygwin", "setup_mount.bat")
    7575        # FIXME: This is kinda lame, we only run setup_mount on win32 platforms, so we only expect the run_command output there.
    76         if sys.platform != "win32":
     76        if sys.platform in ("win32", "cygwin"):
     77            expected_stderr = "MOCK run_command: %s, cwd=None\n" % [setup_mount]
     78        else:
    7779            expected_stderr = ""
    78         else:
    79             expected_stderr = "MOCK run_command: %s, cwd=None\n" % [setup_mount]
    8080        output = outputcapture.OutputCapture()
    8181        output.assert_outputs(self, port.setup_environ_for_server, expected_stderr=expected_stderr)
Note: See TracChangeset for help on using the changeset viewer.