From 3bc1e4668383230ac1ad011d8f0c0c4f6e522c46 Mon Sep 17 00:00:00 2001 From: Jean-Luc Brouillet Date: Mon, 21 Jul 2014 16:08:18 -0700 Subject: [PATCH] Fix directory where CtsTestStubs.apk is found. Empirically, it's now found in a subdirectory named CtsTestStubs. Change-Id: Iae50c37ac7655f0b32cc2cc5a1b50371d1397b54 --- testrunner/runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))