am 58668fc5: Merge "Fix directory where CtsTestStubs.apk is found." into lmp-dev

* commit '58668fc5a502e159d1daf79540ee9039153a2697':
  Fix directory where CtsTestStubs.apk is found.
This commit is contained in:
Jean-Luc Brouillet
2014-07-22 21:47:48 +00:00
committed by Android Git Automerger

View File

@@ -376,7 +376,7 @@ class TestRunner(object):
if is_cts: if is_cts:
# hack! hardcode install of CtsTestStubs # hack! hardcode install of CtsTestStubs
out = android_build.GetTestAppPath() 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("adb install -r %s" % abs_install_path)
logger.Log(self._adb.Install(abs_install_path)) logger.Log(self._adb.Install(abs_install_path))