summaryrefslogtreecommitdiff
path: root/testrunner
diff options
context:
space:
mode:
authorJean-Luc Brouillet <jeanluc@google.com>2014-07-21 16:08:18 -0700
committerJean-Luc Brouillet <jeanluc@google.com>2014-07-21 16:09:31 -0700
commit3bc1e4668383230ac1ad011d8f0c0c4f6e522c46 (patch)
tree50914bd2e97cdfc4774183235b2d6744f8ba77d4 /testrunner
parent51324e22d1df8a169d70e1b6ee8c0ebb65a5ba47 (diff)
Fix directory where CtsTestStubs.apk is found.
Empirically, it's now found in a subdirectory named CtsTestStubs. Change-Id: Iae50c37ac7655f0b32cc2cc5a1b50371d1397b54
Diffstat (limited to 'testrunner')
-rwxr-xr-xtestrunner/runtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testrunner/runtest.py b/testrunner/runtest.py
index d36790490..f9f477162 100755
--- a/testrunner/runtest.py
+++ b/testrunner/runtest.py
@@ -376,7 +376,7 @@ class TestRunner(object):
if is_cts:
# hack! hardcode install of CtsTestStubs
out = android_build.GetTestAppPath()
- abs_install_path = os.path.join(out, "CtsTestStubs.apk")
+ abs_install_path = os.path.join(out, "CtsTestStubs", "CtsTestStubs.apk")
logger.Log("adb install -r %s" % abs_install_path)
logger.Log(self._adb.Install(abs_install_path))