Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1186)

Unified Diff: scripts/slave/recipe_modules/webrtc/steps.py

Issue 1855663002: Make android's run_instrumentation_suite() use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@wrapper-1
Patch Set: address comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/webrtc/steps.py
diff --git a/scripts/slave/recipe_modules/webrtc/steps.py b/scripts/slave/recipe_modules/webrtc/steps.py
index 0bdef8a89dfa7e55eb115b9220878848e62be053..d2cae71d333a8f12839338e529613b4607e5227e 100644
--- a/scripts/slave/recipe_modules/webrtc/steps.py
+++ b/scripts/slave/recipe_modules/webrtc/steps.py
@@ -137,14 +137,10 @@ class AndroidInstrumentationTest(Test):
"""Installs the APK on the device and runs the test."""
def __init__(self, name, test_config):
super(AndroidInstrumentationTest, self).__init__(name)
- self._apk_under_test = test_config.get('apk_under_test')
- self._test_apk = test_config.get('test_apk')
def run(self, api, suffix):
api.m.chromium_android.run_instrumentation_suite(
name=self._name,
- apk_under_test=api.m.chromium_android.apk_path(self._apk_under_test),
- test_apk=api.m.chromium_android.apk_path(self._test_apk),
tool=get_android_tool(api),
verbose=True)

Powered by Google App Engine
This is Rietveld 408576698