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

Unified Diff: bin/cbuildbot_unittest.py

Issue 3798003: Robustify and speed up cros_mark_all_as_stable. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: Check no changes Created 10 years, 2 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 | « bin/cbuildbot.py ('k') | cros_mark_all_as_stable » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cbuildbot_unittest.py
diff --git a/bin/cbuildbot_unittest.py b/bin/cbuildbot_unittest.py
index 98cbe83baa4c677dd46f0a630a79d3df0ff7d150..57742b9c780a3f044e12b27f15a014199d311ec8 100755
--- a/bin/cbuildbot_unittest.py
+++ b/bin/cbuildbot_unittest.py
@@ -113,8 +113,8 @@ class CBuildBotTest(mox.MoxTestBase):
m_file.read().AndReturn(self._test_string)
m_file.close()
- cbuildbot.RunCommand(['./cros_mark_all_as_stable',
- '--tracking_branch="cros/master"'],
+ cbuildbot.RunCommand(['./cros_mark_as_stable', '--all',
+ '--tracking_branch="cros/master"', 'commit'],
cwd='%s/src/scripts' % self._buildroot,
enter_chroot=True)
@@ -133,8 +133,8 @@ class CBuildBotTest(mox.MoxTestBase):
m_file.read().AndReturn('None')
m_file.close()
- cbuildbot.RunCommand(['./cros_mark_all_as_stable',
- '--tracking_branch="cros/master"'],
+ cbuildbot.RunCommand(['./cros_mark_as_stable', '--all',
+ '--tracking_branch="cros/master"', 'commit'],
cwd='%s/src/scripts' % self._buildroot,
enter_chroot=True)
« no previous file with comments | « bin/cbuildbot.py ('k') | cros_mark_all_as_stable » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698