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

Unified Diff: scripts/master/factory/chromium_commands.py

Issue 23591008: Add mini_installer tests to the Chromium build infrastructure. (Closed) Base URL: http://src.chromium.org/chrome/trunk/tools/build/
Patch Set: Address maruel's comments. Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « masters/master.chromium.fyi/slaves.cfg ('k') | scripts/master/factory/chromium_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/factory/chromium_commands.py
===================================================================
--- scripts/master/factory/chromium_commands.py (revision 220111)
+++ 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',
robertshield 2013/08/29 00:45:01 nit: s/_mini_installer_tests/_mini_installer_tests
sukolsak 2013/08/29 07:38:54 Done.
+ 'config', 'config.config')
# chrome_staging directory, relative to the build directory.
self._staging_dir = self.PathJoin('..', 'chrome_staging')
@@ -1595,6 +1599,13 @@
cmd_name='browser_tests',
cmd_options=cmd_options)
+ def AddMiniInstallerTestStep(self, factory_properties):
+ cmd = [self._python, self._mini_installer_tests_runner,
+ self._mini_installer_tests]
+ self.AddTestStep(chromium_step.AnnotatedCommand, 'test_mini_installer', cmd,
robertshield 2013/08/29 00:45:01 question: does AnnotatedCommand like / correctly p
sukolsak 2013/08/29 07:38:54 I am not sure. As discussed, let's submit it to fi
+ 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.
« no previous file with comments | « masters/master.chromium.fyi/slaves.cfg ('k') | scripts/master/factory/chromium_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698