diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-07-08 23:07:53 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-07-08 23:07:53 +0000 |
commit | 07398b5d48c92bea7de6032e46ab5d39a204fb15 (patch) | |
tree | 0664c7b35a17e9e4b78d2bb7fad63f6b5212720f /lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py | |
parent | 5286833f4a9e50a09d7dc80817c9f9aef9dd70dc (diff) | |
download | bcm5719-llvm-07398b5d48c92bea7de6032e46ab5d39a204fb15.tar.gz bcm5719-llvm-07398b5d48c92bea7de6032e46ab5d39a204fb15.zip |
Add some comment.
llvm-svn: 134769
Diffstat (limited to 'lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py index 4385825bceb..622aba0f54f 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 |