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

Unified Diff: tests/gclient_utils_test.py

Issue 554146: Change CheckCall behavior when print_error=False (Closed)
Patch Set: Created 10 years, 11 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 | « scm.py ('k') | tests/scm_unittest.py » ('j') | tests/scm_unittest.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_utils_test.py
diff --git a/tests/gclient_utils_test.py b/tests/gclient_utils_test.py
index 4bbc0b9f69a29186aa3e3f3bf0dec6ef8b629fe5..58864635dc2fed9ac66b7d0f5d5c441a01fb28e1 100644
--- a/tests/gclient_utils_test.py
+++ b/tests/gclient_utils_test.py
@@ -35,7 +35,7 @@ class CheckCallTestCase(SuperMoxTestBase):
stderr=None,
stdout=gclient_utils.subprocess.PIPE,
shell=gclient_utils.sys.platform.startswith('win')).AndReturn(process)
- process.communicate().AndReturn(['bleh'])
+ process.communicate().AndReturn(['bleh', 'foo'])
self.mox.ReplayAll()
gclient_utils.CheckCall(command)
@@ -48,7 +48,7 @@ class CheckCallTestCase(SuperMoxTestBase):
stderr=None,
stdout=gclient_utils.subprocess.PIPE,
shell=gclient_utils.sys.platform.startswith('win')).AndReturn(process)
- process.communicate().AndReturn(['bleh'])
+ process.communicate().AndReturn(['bleh', 'foo'])
self.mox.ReplayAll()
try:
gclient_utils.CheckCall(command)
@@ -58,6 +58,7 @@ class CheckCallTestCase(SuperMoxTestBase):
self.assertEqual(e.cwd, None)
self.assertEqual(e.retcode, 42)
self.assertEqual(e.stdout, 'bleh')
+ self.assertEqual(e.stderr, 'foo')
class SubprocessCallAndFilterTestCase(SuperMoxTestBase):
« no previous file with comments | « scm.py ('k') | tests/scm_unittest.py » ('j') | tests/scm_unittest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698