| Index: build/android/buildbot/bb_utils.py
|
| diff --git a/build/android/buildbot/bb_utils.py b/build/android/buildbot/bb_utils.py
|
| index f901103310ed1a5150f57b734da502b57d5572e1..3c16cc2bc5b243d4db1c7b1eeb8f3c5a948862c1 100644
|
| --- a/build/android/buildbot/bb_utils.py
|
| +++ b/build/android/buildbot/bb_utils.py
|
| @@ -45,6 +45,9 @@ def SpawnCmd(command, stdout=None, cwd=CHROME_SRC):
|
| @staticmethod
|
| def wait():
|
| return 0
|
| + @staticmethod
|
| + def communicate():
|
| + return '', ''
|
| return MockPopen()
|
| return subprocess.Popen(command, cwd=cwd, stdout=stdout)
|
|
|
|
|