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

Side by Side Diff: scripts/master/factory/drmemory_factory.py

Issue 747453003: Fix pylint error/bug on 'drmemory_factory'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698