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

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/win.py

Issue 16917002: Rename chromium-win* ports to win* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (C) 2010 Google Inc. All rights reserved. 1 # Copyright (C) 2010 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
11 # in the documentation and/or other materials provided with the 11 # in the documentation and/or other materials provided with the
12 # distribution. 12 # distribution.
13 # * Neither the name of Google Inc. nor the names of its 13 # * Neither the name of Google Inc. nor the names of its
14 # contributors may be used to endorse or promote products derived from 14 # contributors may be used to endorse or promote products derived from
15 # this software without specific prior written permission. 15 # this software without specific prior written permission.
16 # 16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 28
29 """Chromium Win implementation of the Port interface.""" 29 """Windows implementation of the Port interface."""
30 30
31 import os 31 import os
32 import logging 32 import logging
33 33
34 import chromium 34 import chromium
35 35
36 36
37 _log = logging.getLogger(__name__) 37 _log = logging.getLogger(__name__)
38 38
39 39
40 class ChromiumWinPort(chromium.ChromiumPort): 40 class WinPort(chromium.ChromiumPort):
41 port_name = 'chromium-win' 41 port_name = 'win'
42 42
43 # FIXME: Figure out how to unify this with base.TestConfiguration.all_system s()? 43 # FIXME: Figure out how to unify this with base.TestConfiguration.all_system s()?
44 SUPPORTED_VERSIONS = ('xp', 'win7') 44 SUPPORTED_VERSIONS = ('xp', 'win7')
45 45
46 FALLBACK_PATHS = { 'win7': [ 'chromium-win' ]} 46 FALLBACK_PATHS = { 'win7': [ 'chromium-win' ]}
47 FALLBACK_PATHS['xp'] = ['chromium-win-xp'] + FALLBACK_PATHS['win7'] 47 FALLBACK_PATHS['xp'] = ['chromium-win-xp'] + FALLBACK_PATHS['win7']
48 48
49 DEFAULT_BUILD_DIRECTORIES = ('build', 'out') 49 DEFAULT_BUILD_DIRECTORIES = ('build', 'out')
50 50
51 @classmethod 51 @classmethod
52 def determine_full_port_name(cls, host, options, port_name): 52 def determine_full_port_name(cls, host, options, port_name):
53 if port_name.endswith('-win'): 53 if port_name.endswith('win'):
54 assert host.platform.is_win() 54 assert host.platform.is_win()
55 # We don't maintain separate baselines for vista, so we pretend it i s win7. 55 # We don't maintain separate baselines for vista, so we pretend it i s win7.
56 if host.platform.os_version in ('vista', '7sp0', '7sp1', 'future'): 56 if host.platform.os_version in ('vista', '7sp0', '7sp1', 'future'):
57 version = 'win7' 57 version = 'win7'
58 else: 58 else:
59 version = host.platform.os_version 59 version = host.platform.os_version
60 port_name = port_name + '-' + version 60 port_name = port_name + '-' + version
61 return port_name 61 return port_name
62 62
63 def __init__(self, host, port_name, **kwargs): 63 def __init__(self, host, port_name, **kwargs):
64 chromium.ChromiumPort.__init__(self, host, port_name, **kwargs) 64 chromium.ChromiumPort.__init__(self, host, port_name, **kwargs)
65 self._version = port_name[port_name.index('chromium-win-') + len('chromi um-win-'):] 65 self._version = port_name[port_name.index('win-') + len('win-'):]
66 assert self._version in self.SUPPORTED_VERSIONS, "%s is not in %s" % (se lf._version, self.SUPPORTED_VERSIONS) 66 assert self._version in self.SUPPORTED_VERSIONS, "%s is not in %s" % (se lf._version, self.SUPPORTED_VERSIONS)
67 67
68 def setup_environ_for_server(self, server_name=None): 68 def setup_environ_for_server(self, server_name=None):
69 env = chromium.ChromiumPort.setup_environ_for_server(self, server_name) 69 env = chromium.ChromiumPort.setup_environ_for_server(self, server_name)
70 70
71 # FIXME: lighttpd depends on some environment variable we're not whiteli sting. 71 # FIXME: lighttpd depends on some environment variable we're not whiteli sting.
72 # We should add the variable to an explicit whitelist in base.Port. 72 # We should add the variable to an explicit whitelist in base.Port.
73 # FIXME: This is a temporary hack to get the cr-win bot online until 73 # FIXME: This is a temporary hack to get the cr-win bot online until
74 # someone from the cr-win port can take a look. 74 # someone from the cr-win port can take a look.
75 for key, value in os.environ.items(): 75 for key, value in os.environ.items():
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 def _path_to_helper(self): 138 def _path_to_helper(self):
139 binary_name = 'LayoutTestHelper.exe' 139 binary_name = 'LayoutTestHelper.exe'
140 return self._build_path(binary_name) 140 return self._build_path(binary_name)
141 141
142 def _path_to_image_diff(self): 142 def _path_to_image_diff(self):
143 binary_name = 'ImageDiff.exe' 143 binary_name = 'ImageDiff.exe'
144 return self._build_path(binary_name) 144 return self._build_path(binary_name)
145 145
146 def _path_to_wdiff(self): 146 def _path_to_wdiff(self):
147 return self.path_from_chromium_base('third_party', 'cygwin', 'bin', 'wdi ff.exe') 147 return self.path_from_chromium_base('third_party', 'cygwin', 'bin', 'wdi ff.exe')
OLDNEW
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/port/factory_unittest.py ('k') | Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698