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

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

Issue 12327012: Small fix to AddAppVerifierTestStep. (Closed) Base URL: http://git.chromium.org/chromium/tools/build.git@master
Patch Set: Created 7 years, 10 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
« 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 """Set of utilities to add commands to a buildbot factory. 5 """Set of utilities to add commands to a buildbot factory.
6 6
7 This is based on commands.py and adds Syzygy-specific commands.""" 7 This is based on commands.py and adds Syzygy-specific commands."""
8 8
9 from buildbot.process.properties import WithProperties 9 from buildbot.process.properties import WithProperties
10 from buildbot.steps import shell 10 from buildbot.steps import shell
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 self._arch = target_arch 46 self._arch = target_arch
47 self._factory = factory 47 self._factory = factory
48 48
49 def AddAppVerifierGTestTestStep(self, test_name): 49 def AddAppVerifierGTestTestStep(self, test_name):
50 script_path = self.PathJoin(self._build_dir, '..', 'syzygy', 50 script_path = self.PathJoin(self._build_dir, '..', 'syzygy',
51 'build', 'app_verifier.py') 51 'build', 'app_verifier.py')
52 test_path = self.PathJoin(self._build_dir, 52 test_path = self.PathJoin(self._build_dir,
53 self._target, 53 self._target,
54 test_name + '.exe') 54 test_name + '.exe')
55 args = ['--on-waterfall', test_path, '--', '--gtest_print_time'] 55 args = ['--on-waterfall', test_path, '--', '--gtest_print_time']
56 wrapper_args = ['--annotate=gtest', '--test-type=%s', test_name] 56 wrapper_args = ['--annotate=gtest', '--test-type', test_name]
57 57
58 command = self.GetPythonTestCommand(script_path, arg_list=args, 58 command = self.GetPythonTestCommand(script_path, arg_list=args,
59 wrapper_args=wrapper_args) 59 wrapper_args=wrapper_args)
60 60
61 self.AddTestStep(chromium_step.AnnotatedCommand, test_name, command) 61 self.AddTestStep(chromium_step.AnnotatedCommand, test_name, command)
62 62
63 def AddRandomizeChromeStep(self): 63 def AddRandomizeChromeStep(self):
64 # Randomization script path. 64 # Randomization script path.
65 script_path = self.PathJoin(self._build_dir, '..', 'syzygy', 65 script_path = self.PathJoin(self._build_dir, '..', 'syzygy',
66 'internal', 'build', 'randomize_chrome.py') 66 'internal', 'build', 'randomize_chrome.py')
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 command = [self._python, 149 command = [self._python,
150 self.PathJoin(self._script_dir, 'syzygy/gsutil_cp_dir.py'), 150 self.PathJoin(self._script_dir, 'syzygy/gsutil_cp_dir.py'),
151 archive_dir, 151 archive_dir,
152 dst_gs_url,] 152 dst_gs_url,]
153 153
154 self._factory.addStep(_UrlStatusCommand, 154 self._factory.addStep(_UrlStatusCommand,
155 command=command, 155 command=command,
156 extra_text=('archive', url), 156 extra_text=('archive', url),
157 name='archive_binaries', 157 name='archive_binaries',
158 description='Archive Binaries') 158 description='Archive Binaries')
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