SBProcess.PutSTDIN() needs to be properly typemapped when swigging,
so that we can do Python scripting like this:
target = self.dbg.CreateTarget(self.exe)
self.dbg.SetAsync(True)
process = target.LaunchSimple(None, None, os.getcwd())
process.PutSTDIN("Line 1 Entered.\n")
process.PutSTDIN("Line 2 Entered.\n")
process.PutSTDIN("Line 3 Entered.\n")
Add TestProcessIO.py to exercise the process IO API: PutSTDIN()/GetSTDOUT()/GetSTDERR().
llvm-svn: 145282
This commit is contained in:
@@ -64,6 +64,10 @@ public:
|
||||
lldb::ByteOrder
|
||||
GetByteOrder() const;
|
||||
|
||||
%feature("autodoc", "
|
||||
Writes data into the current process's stdin. API client specifies a Python
|
||||
string as the only argument.
|
||||
") PutSTDIN;
|
||||
size_t
|
||||
PutSTDIN (const char *src, size_t src_len);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user