diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-02-14 20:04:26 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-02-14 20:04:26 +0000 |
commit | b2cde923cf85792f4aa0db17dc0c74dd306494f1 (patch) | |
tree | cf733cd37c85237f6df0d3ec091beb0b02123267 /lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py | |
parent | 5ed3caf2e3640cf5e16e901094f7c3c5cee20ea0 (diff) | |
download | bcm5719-llvm-b2cde923cf85792f4aa0db17dc0c74dd306494f1.tar.gz bcm5719-llvm-b2cde923cf85792f4aa0db17dc0c74dd306494f1.zip |
Remove @expectedFailure decorators as the bug has been fixed.
llvm-svn: 150501
Diffstat (limited to 'lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py')
-rw-r--r-- | lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py b/lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py index a6730a8cd51..cc5b04fb4f6 100644 --- a/lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py +++ b/lldb/test/lang/objc/foundation/TestObjectDescriptionAPI.py @@ -13,7 +13,6 @@ class ObjectDescriptionAPITestCase(TestBase): mydir = os.path.join("lang", "objc", "foundation") # rdar://problem/10857337 - @unittest2.expectedFailure @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @python_api_test def test_find_global_variables_then_object_description_with_dsym(self): @@ -24,7 +23,6 @@ class ObjectDescriptionAPITestCase(TestBase): self.find_global_variables_then_object_description('a.out') # rdar://problem/10857337 - @unittest2.expectedFailure @python_api_test def test_find_global_variables_then_object_description_with_dwarf(self): """Exercise SBTarget.FindGlobalVariables() API.""" @@ -64,6 +62,7 @@ class ObjectDescriptionAPITestCase(TestBase): # Note my_global_str's object description prints fine here. value_list1 = frame0.GetVariables(True, True, True, True) for v in value_list1: + self.DebugSBValue(v) if self.TraceOn(): print "val:", v print "object description:", v.GetObjectDescription() @@ -73,6 +72,7 @@ class ObjectDescriptionAPITestCase(TestBase): # But not here! value_list2 = target.FindGlobalVariables('my_global_str', 3) for v in value_list2: + self.DebugSBValue(v) if self.TraceOn(): print "val:", v print "object description:", v.GetObjectDescription() |