diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-12-19 21:47:43 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-12-19 21:47:43 +0000 |
commit | b146f53de7945cbc1747d97074bf35181454d8a4 (patch) | |
tree | b8c011a3b6f1f83f30e6e52de93e62bc893facd3 /lldb/test/python_api/default-constructor/sb_communication.py | |
parent | a7154527575fb71773809dacf033fb37ef276e7c (diff) | |
download | bcm5719-llvm-b146f53de7945cbc1747d97074bf35181454d8a4.tar.gz bcm5719-llvm-b146f53de7945cbc1747d97074bf35181454d8a4.zip |
Add a fuzz call for SBCommunication: obj.connect(None).
llvm-svn: 146912
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_communication.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_communication.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_communication.py b/lldb/test/python_api/default-constructor/sb_communication.py index fef3eabd909..d4b90840657 100644 --- a/lldb/test/python_api/default-constructor/sb_communication.py +++ b/lldb/test/python_api/default-constructor/sb_communication.py @@ -14,6 +14,7 @@ def fuzz_obj(obj): obj.AdoptFileDesriptor(1, False) obj.AdoptFileDesriptor(2, False) obj.Connect("file:/tmp/myfile") + obj.Connect(None) obj.Disconnect() obj.IsConnected() obj.GetCloseOnEOF() |