<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm-project.git/lldb/test/python_api/default-constructor/sb_process.py, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/'/>
<entry>
<title>Move lldb/test to lldb/packages/Python/lldbsuite/test.</title>
<updated>2015-10-28T17:43:26+00:00</updated>
<author>
<name>Zachary Turner</name>
<email>zturner@google.com</email>
</author>
<published>2015-10-28T17:43:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=c432c8f856e0bd84de980a9d9bb2d31b06fa95b1'/>
<id>c432c8f856e0bd84de980a9d9bb2d31b06fa95b1</id>
<content type='text'>
This is the conclusion of an effort to get LLDB's Python code
structured into a bona-fide Python package.  This has a number
of benefits, but most notably the ability to more easily share
Python code between different but related pieces of LLDB's Python
infrastructure (for example, `scripts` can now share code with
`test`).

llvm-svn: 251532
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the conclusion of an effort to get LLDB's Python code
structured into a bona-fide Python package.  This has a number
of benefits, but most notably the ability to more easily share
Python code between different but related pieces of LLDB's Python
infrastructure (for example, `scripts` can now share code with
`test`).

llvm-svn: 251532
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed fuzz tests to not print their values (we only need to test if access to them does not crash).</title>
<updated>2013-09-25T20:48:03+00:00</updated>
<author>
<name>Richard Mitton</name>
<email>richard@codersnotes.com</email>
</author>
<published>2013-09-25T20:48:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=0d401206151183cc39ec5795075aacb4f1b645ba'/>
<id>0d401206151183cc39ec5795075aacb4f1b645ba</id>
<content type='text'>
This fixes the 'No value' string appearing in the dotest results.

llvm-svn: 191399
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the 'No value' string appearing in the dotest results.

llvm-svn: 191399
</pre>
</div>
</content>
</entry>
<entry>
<title>Add SBProcess::GetNumSupportedHardwareWatchpoints() API and export it through the Python scripting bridge.</title>
<updated>2012-05-23T22:34:34+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2012-05-23T22:34:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=f9ef60d2369f0798e8b939ce1798a7a4f0234b40'/>
<id>f9ef60d2369f0798e8b939ce1798a7a4f0234b40</id>
<content type='text'>
Add/modify some test cases.

llvm-svn: 157353
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add/modify some test cases.

llvm-svn: 157353
</pre>
</div>
</content>
</entry>
<entry>
<title>Add fuzz calls for newly added SBProcess methods.  Fix a typo in the audodoc of SBProcess.ReadCStringFromMemory().</title>
<updated>2011-12-15T22:34:59+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-12-15T22:34:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=80e3e84ddb99c1a9306530cf18de6d836c22f6a3'/>
<id>80e3e84ddb99c1a9306530cf18de6d836c22f6a3</id>
<content type='text'>
llvm-svn: 146695
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
llvm-svn: 146695
</pre>
</div>
</content>
</entry>
<entry>
<title>SBProcess.PutSTDIN() needs to be properly typemapped when swigging,</title>
<updated>2011-11-28T21:39:07+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-11-28T21:39:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=49cb85db64046f0030134cf4eac27b1dbe02cc2c'/>
<id>49cb85db64046f0030134cf4eac27b1dbe02cc2c</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Add fuzz calls for various iterators, too.</title>
<updated>2011-10-03T22:02:59+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-10-03T22:02:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=b92574ffb96b1940619a12dd6a4aef123ec9af57'/>
<id>b92574ffb96b1940619a12dd6a4aef123ec9af57</id>
<content type='text'>
llvm-svn: 141035
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
llvm-svn: 141035
</pre>
</div>
</content>
</entry>
<entry>
<title>Add fuzz calls for SBStringList and add obj.Clear() calls for some files.</title>
<updated>2011-06-28T23:29:14+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-06-28T23:29:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=dedd7d6ed6cc73d0cb1b2ddf3bea8a08262c7051'/>
<id>dedd7d6ed6cc73d0cb1b2ddf3bea8a08262c7051</id>
<content type='text'>
llvm-svn: 134040
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
llvm-svn: 134040
</pre>
</div>
</content>
</entry>
<entry>
<title>Add fuzz calls for SBModule and SBProcess.</title>
<updated>2011-06-28T22:32:15+00:00</updated>
<author>
<name>Johnny Chen</name>
<email>johnny.chen@apple.com</email>
</author>
<published>2011-06-28T22:32:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=a25bf6efb5662974b67863aaa280cc8b4a3ed160'/>
<id>a25bf6efb5662974b67863aaa280cc8b4a3ed160</id>
<content type='text'>
llvm-svn: 134037
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
llvm-svn: 134037
</pre>
</div>
</content>
</entry>
</feed>
