diff options
author | Enrico Granata <egranata@apple.com> | 2012-03-01 19:32:33 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-03-01 19:32:33 +0000 |
commit | 896cd1d3e675b1c7be05be9975b09df1bafca9eb (patch) | |
tree | 611167d97b5f252bc9b80677d08ed7a34398257a /lldb/scripts/Python/finish-swig-Python-LLDB.sh | |
parent | 34085df4e852438dd156fcd87bfd650be9243d2c (diff) | |
download | bcm5719-llvm-896cd1d3e675b1c7be05be9975b09df1bafca9eb.tar.gz bcm5719-llvm-896cd1d3e675b1c7be05be9975b09df1bafca9eb.zip |
(a) adding an introspection formatter for NS(Mutable)IndexSet
(b) fixes and improvements to the formatters for NSDate and NSString
(c) adding an introspection formatter for NSCountedSet
(d) making the Objective-C formatters test cases pass on both 64 and 32 bit
one of the test cases is marked as expected failure on i386 - support needs to be added to the LLDB core for it to pass
llvm-svn: 151826
Diffstat (limited to 'lldb/scripts/Python/finish-swig-Python-LLDB.sh')
-rwxr-xr-x | lldb/scripts/Python/finish-swig-Python-LLDB.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lldb/scripts/Python/finish-swig-Python-LLDB.sh b/lldb/scripts/Python/finish-swig-Python-LLDB.sh index aabd94d8087..66dfd9978ce 100755 --- a/lldb/scripts/Python/finish-swig-Python-LLDB.sh +++ b/lldb/scripts/Python/finish-swig-Python-LLDB.sh @@ -396,6 +396,20 @@ else fi fi +if [ -f "${SRC_ROOT}/examples/summaries/cocoa/NSIndexSet.py" ] +then + if [ $Debug == 1 ] + then + echo "Copying NSIndexSet.py to ${framework_python_dir}" + fi + cp "${SRC_ROOT}/examples/summaries/cocoa/NSIndexSet.py" "${framework_python_dir}" +else + if [ $Debug == 1 ] + then + echo "Unable to find ${SRC_ROOT}/examples/summaries/cocoa/NSIndexSet.py" + fi +fi + if [ -f "${SRC_ROOT}/examples/summaries/cocoa/cache.py" ] then if [ $Debug == 1 ] |