[Lldb-commits] [lldb] r146912 - /lldb/trunk/test/python_api/default-constructor/sb_communication.py
Johnny Chen
johnny.chen at apple.com
Mon Dec 19 13:47:43 PST 2011
Author: johnny
Date: Mon Dec 19 15:47:43 2011
New Revision: 146912
URL: http://llvm.org/viewvc/llvm-project?rev=146912&view=rev
Log:
Add a fuzz call for SBCommunication: obj.connect(None).
Modified:
lldb/trunk/test/python_api/default-constructor/sb_communication.py
Modified: lldb/trunk/test/python_api/default-constructor/sb_communication.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/default-constructor/sb_communication.py?rev=146912&r1=146911&r2=146912&view=diff
==============================================================================
--- lldb/trunk/test/python_api/default-constructor/sb_communication.py (original)
+++ lldb/trunk/test/python_api/default-constructor/sb_communication.py Mon Dec 19 15:47:43 2011
@@ -14,6 +14,7 @@
obj.AdoptFileDesriptor(1, False)
obj.AdoptFileDesriptor(2, False)
obj.Connect("file:/tmp/myfile")
+ obj.Connect(None)
obj.Disconnect()
obj.IsConnected()
obj.GetCloseOnEOF()
More information about the lldb-commits
mailing list