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 """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 Loading... |
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 Loading... |
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') |
OLD | NEW |