Index: scripts/slave/recipe_modules/chromium_android/api.py |
diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py |
index 0ea469704de995357ddbd2c128817a5195341c79..873b889a5354451e25d8f47f5d2566d648e64d66 100644 |
--- a/scripts/slave/recipe_modules/chromium_android/api.py |
+++ b/scripts/slave/recipe_modules/chromium_android/api.py |
@@ -817,7 +817,7 @@ class AndroidApi(recipe_api.RecipeApi): |
def common_tests_setup_steps(self, perf_setup=False): |
if self.c.gce_setup: |
- self.launch_gce_instances(snapshot=self.c.gce_snapshot) |
+ self.launch_gce_instances(snapshot=self.c.gce_snapshot, count=self.c.gce_count) |
self.spawn_logcat_monitor() |
self.provision_devices(emulators=True) |
else: |
@@ -844,7 +844,7 @@ class AndroidApi(recipe_api.RecipeApi): |
self.logcat_dump(gs_bucket=logcat_gs_bucket) |
self.stack_tool_steps() |
if self.c.gce_setup: |
- self.shutdown_gce_instances() |
+ self.shutdown_gce_instances(count=self.c.gce_count) |
self.test_report() |
def run_bisect_script(self, extra_src='', path_to_config='', **kwargs): |