Changeset 99791 in webkit
- Timestamp:
- Nov 9, 2011, 5:21:36 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r99786 r99791 1 2011-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 1 10 2011-11-09 Dana Jansens <danakj@chromium.org> 2 11 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py
r99785 r99791 74 74 setup_mount = self._mock_path_from_chromium_base("third_party", "cygwin", "setup_mount.bat") 75 75 # 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: 77 79 expected_stderr = "" 78 else:79 expected_stderr = "MOCK run_command: %s, cwd=None\n" % [setup_mount]80 80 output = outputcapture.OutputCapture() 81 81 output.assert_outputs(self, port.setup_environ_for_server, expected_stderr=expected_stderr)
Note:
See TracChangeset
for help on using the changeset viewer.