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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 327423008: Change port to use apache by default on win7, update test expectations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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: Tools/Scripts/webkitpy/layout_tests/port/base.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index 4e717d1c49eda4fa12258ecbfde599cc52c21fbe..81d37d55b5065591dd3a57e6b49cecd43fad1865 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -1127,7 +1127,7 @@ class Port(object):
def http_server_supports_ipv6(self):
# Apache < 2.4 on win32 does not support IPv6, nor does cygwin apache.
- if self.host.platform.is_cygwin() or self.get_option('use_apache') and self.host.platform.is_win():
+ if self.host.platform.is_cygwin() or (self.uses_apache() and self.host.platform.is_win()):
return False
return True

Powered by Google App Engine
This is Rietveld 408576698