History log of /external/lldb/test/python_api/process/io/TestProcessIO.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
8b5c29d670643d4c7c1c54b4f866ee65544cc902 19-Feb-2013 Daniel Malea <daniel.malea@intel.com> Minor test runner improvemenst
- rework the way SBDebugger.SetAsync() is used to avoid side effects (reset original value at TearDownHook)
- refactor expectedFailureClang (and add expectedFailureGcc decorator)
- mark TestChangeValueAPI.py as expectedFailureGcc due to PR-15039



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@175523 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/python_api/process/io/TestProcessIO.py
21b1984e161b0cadee331d32bfd721eccfdf4b1f 06-Apr-2012 Johnny Chen <johnny.chen@apple.com> Second batch of adding @dsym_test/@dwarf_test decorators to existing test cases.
Plus some minor cleanup of test method names.
Third and final batch is coming.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@154197 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/python_api/process/io/TestProcessIO.py
7c20b0a45fb6fddb4882bc390ec6bd5019e12cab 12-Jan-2012 Johnny Chen <johnny.chen@apple.com> rdar://problem/10492827
SBProcess.GetSTDERR() not getting stderr of the launched process

Since we are launch the inferior with:

process = target.LaunchSimple(None, None, os.getcwd())

i.e., without specifying stdin/out/err. A pseudo terminal is used for
handling the process I/O, and we are satisfied once the expected output
appears in process.GetSTDOUT().


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@147983 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/python_api/process/io/TestProcessIO.py
23038b6170dbe3aa25e2aab5719fa418fab17043 28-Nov-2011 Johnny Chen <johnny.chen@apple.com> 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().


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@145282 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/test/python_api/process/io/TestProcessIO.py