Home | History | Annotate | Download | only in test_defs

Lines Matching full:path

37     The test_suite must contain a build path where the native test
55 build_path = os.path.join(android_build.GetTop(), self.GetBuildPath())
56 os.path.walk(build_path, self._CollectTestSources, source_list)
85 full_path = os.path.join(os.sep, "system", "bin", f)
110 This method is a callback for os.path.walk.
118 (name, ext) = os.path.splitext(f)
122 test_list.append(str(os.path.join(dirname, f)))
124 def _FilterOutMissing(self, path, sources):
132 path: Where the binaries should be.
133 sources: List of tests source path.
139 binary = os.path.basename(f)
140 binary = os.path.splitext(binary)[0]
141 full_path = os.path.join(path, binary)
142 if os.path.exists(full_path):
163 full_path = os.path.join(android_build.GetHostBin(), binary)