Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py

Issue 2799713002: Remove all support for cygwin in run-webkit-tests. (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py
index dec8c057d2f7719785ee33c3770526b596006375..1ee7183f64a8c70ef4eaeb5ca6a5c3316d486a51 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py
@@ -48,19 +48,6 @@ class WinPortTest(port_testcase.PortTestCase):
orig_environ = port.host.environ.copy()
env = output.assert_outputs(self, port.setup_environ_for_server)
self.assertEqual(orig_environ['PATH'], port.host.environ.get('PATH'))
- self.assertNotEqual(env['PATH'], port.host.environ.get('PATH'))
-
- def test_setup_environ_for_server_cygpath(self):
- port = self.make_port()
- env = port.setup_environ_for_server()
- self.assertEqual(env['CYGWIN_PATH'], '/mock-checkout/third_party/cygwin/bin')
-
- def test_setup_environ_for_server_register_cygwin(self):
- port = self.make_port(options=optparse.Values({'register_cygwin': True, 'results_directory': '/'}))
- port._executive = MockExecutive(should_log=True)
- expected_logs = "MOCK run_command: ['/mock-checkout/third_party/cygwin/setup_mount.bat'], cwd=None\n"
- output = output_capture.OutputCapture()
- output.assert_outputs(self, port.setup_environ_for_server, expected_logs=expected_logs)
def assert_name(self, port_name, os_version_string, expected):
port = self.make_port(port_name=port_name, os_version=os_version_string)

Powered by Google App Engine
This is Rietveld 408576698