diff options
author | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:23 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:23 +0000 |
commit | 2b1a416cb52afffe7d045fc0eb48d1d891b549dd (patch) | |
tree | 3ca6b9f6a9598beb862a17a310415f00c18ddea6 /lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py | |
parent | 8158a2037ac4485a6f8cdf8594bb98a096eb4ed3 (diff) | |
download | bcm5719-llvm-2b1a416cb52afffe7d045fc0eb48d1d891b549dd.tar.gz bcm5719-llvm-2b1a416cb52afffe7d045fc0eb48d1d891b549dd.zip |
Remove decorators related to debug info types.
All existing usages were ported over to the common decorators.
llvm-svn: 260290
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py index 499e536966b..088eb83e10d 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py @@ -23,8 +23,7 @@ class TestObjCStaticMethodStripped(TestBase): @skipUnlessDarwin @add_test_categories(['pyapi']) - @skipIfDwarf # This test requires a stripped binary and a dSYM - @skipIfDWO # This test requires a stripped binary and a dSYM + @skipIf(debug_info=no_match("dsym"), bugnumber="This test requires a stripped binary and a dSYM") #<rdar://problem/12042992> def test_with_python_api(self): """Test calling functions in static methods with a stripped binary.""" |