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

Unified Diff: buildbot/prebuilt_unittest.py

Issue 6840064: Restart codereview issue 6792042 (Closed) Base URL: http://git.chromium.org/git/chromite.git@master
Patch Set: Simplify the addition of the emptyboard flag. Created 9 years, 8 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
Index: buildbot/prebuilt_unittest.py
diff --git a/buildbot/prebuilt_unittest.py b/buildbot/prebuilt_unittest.py
index f71b5483601be08b340035680d966839b353e4ae..9de1e99ba4dc5cc2d1645f6e95ba6e9164193438 100755
--- a/buildbot/prebuilt_unittest.py
+++ b/buildbot/prebuilt_unittest.py
@@ -402,7 +402,7 @@ class TestUploadPrebuilt(unittest.TestCase):
'rsync -av --chmod=a+r fake %s/Packages' % full_remote_path,
'rsync -Rav private.tbz2 %s/' % full_remote_path]
for cmd in cmds:
- prebuilt._RetryRun(cmd, shell=True, cwd='/packages').AndReturn(True)
+ prebuilt._RetryRun(cmd, cwd='/packages').AndReturn(True)
self.mox.ReplayAll()
uri = self.pkgindex.header['URI']
uploader = prebuilt.PrebuiltUploader('chromeos-prebuilt:/dir',

Powered by Google App Engine
This is Rietveld 408576698