summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorjames.wei@intel.com <james.wei@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 10:12:52 +0000
committerjames.wei@intel.com <james.wei@intel.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 10:12:52 +0000
commitacbead943d7e78b929f8b74ddf81684b352dee99 (patch)
tree082b4604b2b6dc29ea16805b33cfaa3c28549086 /build
parent0b7df36d890f91898179b2a90a98c90e4c065f48 (diff)
downloadchromium_src-acbead943d7e78b929f8b74ddf81684b352dee99.zip
chromium_src-acbead943d7e78b929f8b74ddf81684b352dee99.tar.gz
chromium_src-acbead943d7e78b929f8b74ddf81684b352dee99.tar.bz2
fix the error of emulator.py
AndroidCommand only needs two args while emulator.py pass three BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10700157 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146095 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-xbuild/android/emulator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/emulator.py b/build/android/emulator.py
index 18f190e..9a4e589 100755
--- a/build/android/emulator.py
+++ b/build/android/emulator.py
@@ -196,7 +196,7 @@ class Emulator(object):
After confirming a wait-for-device can be successful, make sure
it returns the right answer.
"""
- a = android_commands.AndroidCommands(self.device, False)
+ a = android_commands.AndroidCommands(self.device)
seconds_waited = 0
number_of_waits = 2 # Make sure we can wfd twice
adb_cmd = "adb -s %s %s" % (self.device, 'wait-for-device')