Home | History | Annotate | Download | only in testrunner

Lines Matching full:path

27 system path to the test to run (runtest --path <path>).
55 # file path to android core platform tests, relative to android build root
57 _CORE_TEST_PATH = os.path.join("development", "testrunner",
60 # vendor glob file path patterns to tests, relative to android
62 _VENDOR_TEST_PATH = os.path.join("vendor", "*", "tests", "testinfo",
86 user_test_default = os.path.join(os.environ.get("HOME"), ".android",
135 parser.add_option("-x", "--path", dest="test_path",
136 help="Run test(s) at given file system path")
197 core_test_path = os.path.join(self._root_path, self._CORE_TEST_PATH)
202 vendor_tests_pattern = os.path.join(self._root_path,
207 if os.path.isfile(self._options.user_tests_file):
216 print "%-25s %-40s %s" % ("name", "build path", "description")
270 for path in test_suite.GetBuildDependencies(self._options):
271 self._AddBuildTargetPath(path, target_set)
275 build_file_path = os.path.join(build_dir, "Android.mk")
276 if os.path.isfile(os.path.join(self._root_path, build_file_path)):