Chromium Code Reviews| 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.""" |