From b146f53de7945cbc1747d97074bf35181454d8a4 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 19 Dec 2011 21:47:43 +0000 Subject: [PATCH] Add a fuzz call for SBCommunication: obj.connect(None). llvm-svn: 146912 --- lldb/test/python_api/default-constructor/sb_communication.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/python_api/default-constructor/sb_communication.py b/lldb/test/python_api/default-constructor/sb_communication.py index fef3eabd9092..d4b90840657b 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()