Home | History | Annotate | Download | only in test

Lines Matching refs:executable

67 CURRENT_EXECUTABLE_SET = "Current executable set successfully"
185 """Returns true if fpath is an executable."""
848 # module cacheing subsystem to be confused with executable name "a.out"
972 def spawnSubprocess(self, executable, args=[]):
973 """ Creates a subprocess.Popen object with the specified executable and arguments,
983 proc = Popen([executable] + args,
989 def forkSubprocess(self, executable, args=[]):
1005 os.execvp(executable, [executable] + args)
1343 """ Platform specific way to build an executable from C/C++ sources. """