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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/win.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
« LayoutTests/FlakyTests ('K') | « Tools/Scripts/webkitpy/layout_tests/port/base.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/port/win.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/win.py b/Tools/Scripts/webkitpy/layout_tests/port/win.py
index 38be6bf1b1ce5d2c8afe73df5a6933b7ea5b16f5..3af96366635dcf8a8caaa65867d8c3b17dfc5199 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/win.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/win.py
@@ -203,7 +203,10 @@ class WinPort(base.Port):
return path.replace('\\', '/')
def uses_apache(self):
- return self.get_option('use_apache')
+ val = self.get_option('use_apache')
+ if val is None:
+ val = bool(self.version() != 'xp')
+ return val
def path_to_apache(self):
return self.path_from_chromium_base('third_party', 'apache-win32', 'bin', 'httpd.exe')
« LayoutTests/FlakyTests ('K') | « Tools/Scripts/webkitpy/layout_tests/port/base.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698