Home | History | Annotate | Download | only in gdbrunner

Lines Matching refs:executable_path

188 def find_file(device, executable_path, sysroot, user=None):
197 executable_path: absolute path to the executable or symlink.
206 ValueError: |executable_path| is not absolute.
208 if not os.path.isabs(executable_path):
209 raise ValueError("'{}' is not an absolute path".format(executable_path))
215 yield (sysroot + executable_path, True)
219 target = device.shell(['readlink', '-e', '-n', executable_path])[0]
229 ["cat", executable_path, ">", remote_temp_path])
234 "device".format(executable_path))
241 raise RuntimeError('Could not find executable {}'.format(executable_path))