OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import ntpath | 5 import ntpath |
6 import posixpath | 6 import posixpath |
7 import re | 7 import re |
8 from buildbot.process import factory | 8 from buildbot.process import factory |
9 from buildbot.process.properties import WithProperties | 9 from buildbot.process.properties import WithProperties |
10 from buildbot.steps.source import SVN | 10 from buildbot.steps.source import SVN |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 def BotToPlatform(bot_platform): | 50 def BotToPlatform(bot_platform): |
51 """Takes a bot platform value and returns a platform string.""" | 51 """Takes a bot platform value and returns a platform string.""" |
52 if bot_platform.startswith('win'): | 52 if bot_platform.startswith('win'): |
53 return 'windows' | 53 return 'windows' |
54 elif bot_platform.startswith('linux'): | 54 elif bot_platform.startswith('linux'): |
55 return 'linux' | 55 return 'linux' |
56 elif bot_platform.startswith('mac'): | 56 elif bot_platform.startswith('mac'): |
57 return 'mac' | 57 return 'mac' |
58 else: | 58 else: |
59 raise ValueError('Unknown platform %s' % platform) | 59 raise ValueError('Unknown platform %s' % bot_platform) |
60 | 60 |
61 | 61 |
62 def OsFullName(platform): | 62 def OsFullName(platform): |
63 if platform.startswith('win'): | 63 if platform.startswith('win'): |
64 return 'Windows' | 64 return 'Windows' |
65 elif platform.startswith('linux'): | 65 elif platform.startswith('linux'): |
66 return 'Linux' | 66 return 'Linux' |
67 elif platform.startswith('mac'): | 67 elif platform.startswith('mac'): |
68 return 'MacOS' | 68 return 'MacOS' |
69 else: | 69 else: |
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 # TODO(rnk): We should run some selection of layout tests if we want to | 782 # TODO(rnk): We should run some selection of layout tests if we want to |
783 # verify output. | 783 # verify output. |
784 ret.addStep(Test(command=cmd, | 784 ret.addStep(Test(command=cmd, |
785 env={'CHROME_DEVEL_SANDBOX': | 785 env={'CHROME_DEVEL_SANDBOX': |
786 '/opt/chromium/chrome_sandbox'}, | 786 '/opt/chromium/chrome_sandbox'}, |
787 name=test, | 787 name=test, |
788 descriptionDone=test, | 788 descriptionDone=test, |
789 description=test)) | 789 description=test)) |
790 | 790 |
791 return ret | 791 return ret |
OLD | NEW |