diff options
author | haitao.feng@intel.com <haitao.feng@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-01 09:32:35 +0000 |
---|---|---|
committer | haitao.feng@intel.com <haitao.feng@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-01 09:32:35 +0000 |
commit | 84d88d337868e1a9dbee08b1c5acc81447d47e36 (patch) | |
tree | 0b07b5b0eb4dfb0f9be2d573d8b9d0d11a588bad /build | |
parent | 48bbfd8e9d9aea6f92240dcba3bca1cf3287699b (diff) | |
download | chromium_src-84d88d337868e1a9dbee08b1c5acc81447d47e36.zip chromium_src-84d88d337868e1a9dbee08b1c5acc81447d47e36.tar.gz chromium_src-84d88d337868e1a9dbee08b1c5acc81447d47e36.tar.bz2 |
Make emulator.py runnable and adjust partition size to 512
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10456078
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140009 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/emulator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/android/emulator.py b/build/android/emulator.py index b3259c9..224d31b 100755 --- a/build/android/emulator.py +++ b/build/android/emulator.py @@ -152,8 +152,8 @@ class Emulator(object): # Speed up emulator launch by 40%. Really. '-no-boot-anim', # The default /data size is 64M. - # That's not enough for 4 unit test bundles and their data. - '-partition-size', '256', + # That's not enough for 8 unit test bundles and their data. + '-partition-size', '512', # Use a familiar name and port. '-avd', 'buildbot', '-port', str(port)] @@ -247,7 +247,7 @@ class Emulator(object): signal.signal(sig, self._ShutdownOnSignal) def main(argv): - Emulator().launch() + Emulator(True).Launch(True) if __name__ == '__main__': |