From 07398b5d48c92bea7de6032e46ab5d39a204fb15 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Fri, 8 Jul 2011 23:07:53 +0000 Subject: [PATCH] Add some comment. llvm-svn: 134769 --- .../default-constructor/TestDefaultConstructorForAPIObjects.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py index 4385825bcebb..622aba0f54fb 100644 --- a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py +++ b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py @@ -118,6 +118,7 @@ class APIDefaultConstructorTestCase(TestBase): @python_api_test def test_SBEvent(self): obj = lldb.SBEvent() + # This is just to test that typemap, as defined in lldb.swig, works. obj2 = lldb.SBEvent(0, "abc") if self.TraceOn(): print obj