diff options
author | Sean Callanan <scallanan@apple.com> | 2016-05-02 21:15:31 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2016-05-02 21:15:31 +0000 |
commit | c530ba98a9ee2ab97fcae2fd28a366050aa35919 (patch) | |
tree | 5500fc7a180e5f1fc0c4e7879ef05258113a9965 /lldb/packages/Python/lldbsuite/test | |
parent | 52f869326331871498e1c13895444701731026cb (diff) | |
download | bcm5719-llvm-c530ba98a9ee2ab97fcae2fd28a366050aa35919.tar.gz bcm5719-llvm-c530ba98a9ee2ab97fcae2fd28a366050aa35919.zip |
Import block pointers from DWARF as Clang block pointers, not as structs.
Also added a data formatter that presents them as structs if you use frame
variable to look at their contents. Now the blocks testcase works.
<rdar://problem/15984431>
llvm-svn: 268307
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py b/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py index c1099c37ee7..0cc9456af32 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py @@ -36,7 +36,6 @@ class BlocksTestCase(TestBase): self.wait_for_breakpoint() - @unittest2.expectedFailure("rdar://problem/10413887 - Call blocks in expressions") @skipUnlessDarwin def test_expr(self): self.launch_common() |