diff options
author | Zachary Turner <zturner@google.com> | 2016-02-09 00:36:34 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-09 00:36:34 +0000 |
commit | 05021bb2ed04dffab3a51bfb7572ee273fb9c8aa (patch) | |
tree | 601db0e3df85c3dc3660920dcfe19da039e6aa75 /lldb/packages/Python/lldbsuite/test/lang/objc/blocks | |
parent | 7fade35ec270447f84ee63c598500098b9634e43 (diff) | |
download | bcm5719-llvm-05021bb2ed04dffab3a51bfb7572ee273fb9c8aa.tar.gz bcm5719-llvm-05021bb2ed04dffab3a51bfb7572ee273fb9c8aa.zip |
Remove skip and xfail decorators for target architecture.
This removes the following decorators:
* skipIfI386
* expectedFailureI386
* expectedFailurex86_64
* skipIfArch
* skipUnlessArch
* skipUnlessI386
And other related decorators. All code using those decorators
is updated to use expectedFailureAll and skipIf
llvm-svn: 260178
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objc/blocks')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py b/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py index 565ffad105d..9fa03071c59 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py @@ -24,7 +24,7 @@ class TestObjCIvarsInBlocks(TestBase): @skipUnlessDarwin @add_test_categories(['pyapi']) - @expectedFailurei386 # This test requires the 2.0 runtime, so it will fail on i386. + @expectedFailureAll(archs=["i[3-6]86"], bugnumber="This test requires the 2.0 runtime, so it will fail on i386") def test_with_python_api(self): """Test printing the ivars of the self when captured in blocks""" self.build() |