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

Unified Diff: build/android/android_commands.py

Issue 10657017: Silence adb command output by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/android_commands.py
diff --git a/build/android/android_commands.py b/build/android/android_commands.py
index 209ffeda30e4350aca3ff062362e28c0faf6ed9e..3f370f2552b8d99ecd3c7f40f94ca040f5c9150c 100755
--- a/build/android/android_commands.py
+++ b/build/android/android_commands.py
@@ -466,8 +466,8 @@ class AndroidCommands(object):
'(?P<time>[^\s]+)\s+'
'(?P<filename>[^\s]+)$')
return _GetFilesFromRecursiveLsOutput(
- path, self.RunShellCommand('ls -lR %s' % path), re_file,
- self.RunShellCommand('date +%z')[0])
+ path, self.RunShellCommand('ls -lR %s' % path, log_result=False),
bulach 2012/06/25 09:47:51 long story super short: in the past, we had variou
+ re_file, self.RunShellCommand('date +%z')[0])
def SetupPerformanceTest(self):
"""Sets up performance tests."""
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698