From 64bf0509f6c9cbf61f1a167d75130f463f999c4c Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Fri, 30 Sep 2016 16:02:28 +0000 Subject: [PATCH] Skip TestRuntimeIvars on i386; the Objective-C V1 runtime doesn't list ivars. llvm-svn: 282869 --- .../lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py index 8049051..f2c3ec0 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py @@ -3,4 +3,4 @@ from lldbsuite.test import decorators lldbinline.MakeInlineTest( __file__, globals(), [ - decorators.skipIfFreeBSD, decorators.skipIfLinux, decorators.skipIfWindows]) + decorators.skipIfFreeBSD, decorators.skipIfLinux, decorators.skipIfWindows, decorators.skipIf(archs=["i386", "i686"])]) -- 2.7.4