Index: tools/telemetry/telemetry/core/platform/profiler/oomkiller_profiler.py |
diff --git a/tools/telemetry/telemetry/core/platform/profiler/oomkiller_profiler.py b/tools/telemetry/telemetry/core/platform/profiler/oomkiller_profiler.py |
index 64cf6e3b75f9b297a6554fe386c99796aff2c957..172b888376f478967a17856584ca4bcae4d1e6bb 100644 |
--- a/tools/telemetry/telemetry/core/platform/profiler/oomkiller_profiler.py |
+++ b/tools/telemetry/telemetry/core/platform/profiler/oomkiller_profiler.py |
@@ -32,8 +32,9 @@ class OOMKillerProfiler(profiler.Profiler): |
browser_backend, platform_backend, output_path, state) |
if not 'mem_consumer_launched' in state: |
state['mem_consumer_launched'] = True |
+ arch_name = self._browser_backend.adb.device().GetABI() |
mem_consumer_path = support_binaries.FindPath( |
- os.path.join('apks', 'MemConsumer.apk'), 'android') |
+ os.path.join('apks', 'MemConsumer.apk'), arch_name, 'android') |
assert mem_consumer_path, ('Could not find memconsumer app. Please build ' |
'memconsumer target.') |
if not self._platform_backend.CanLaunchApplication( |