Chromium Code Reviews| Index: scripts/master/factory/chromium_commands.py |
| =================================================================== |
| --- scripts/master/factory/chromium_commands.py (revision 219965) |
| +++ scripts/master/factory/chromium_commands.py (working copy) |
| @@ -98,6 +98,10 @@ |
| self._nacl_integration_tester_tool = J( |
| 'src', 'chrome', 'test', 'nacl_test_injection', |
| 'buildbot_nacl_integration.py') |
| + self._mini_installer_tests_runner = J('src', 'chrome', 'test', |
| + 'mini_installer', 'test_installer.py') |
| + self._mini_installer_tests = J('src', 'chrome', 'test', 'mini_installer', |
| + 'config', 'config.config') |
| # chrome_staging directory, relative to the build directory. |
| self._staging_dir = self.PathJoin('..', 'chrome_staging') |
| @@ -1595,6 +1599,14 @@ |
| cmd_name='browser_tests', |
| cmd_options=cmd_options) |
| + def AddMiniInstallerTestStep(self, factory_properties): |
| + if self._target == 'Release': |
|
M-A Ruel
2013/08/28 19:50:12
Remove this, it's not needed.
If you don't want t
sukolsak
2013/08/29 00:07:48
Done.
|
| + cmd = [self._python, self._mini_installer_tests_runner, |
| + self._mini_installer_tests] |
| + self.AddTestStep(chromium_step.AnnotatedCommand, 'test_mini_installer', |
| + cmd, halt_on_failure=True, timeout=600, |
| + do_step_if=self.TestStepFilter) |
| + |
| def AddChromebotServer(self, factory_properties=None): |
| """Add steps to run Chromebot script for server. |