Home | History | Annotate | Download | only in test

Lines Matching full:path

5 The lldb executable is located via your PATH env variable, if not specified.
14 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
17 """Find the full path to a program, or return None."""
18 fpath, fname = os.path.split(program)
23 for path in os.environ["PATH"].split(os.pathsep):
24 exe_file = os.path.join(path, program)
69 # This is to set up the Python path to include the pexpect-2.4 dir.
71 scriptPath = sys.path[0]
72 sys.path.append(os.path.join(scriptPath, os.pardir, os.pardir, 'test', 'pexpect-2.4'))
77 The lldb executable is located via your PATH env variable, if not specified.\
82 help='Full path to your lldb command')