[Lldb-commits] [lldb] 08a6229 - [LLDB] Adding skipif for arm linux for TestStructuredBinding.py
Shafik Yaghmour via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 17 14:31:02 PST 2022
Author: Shafik Yaghmour
Date: 2022-02-17T14:30:54-08:00
New Revision: 08a6229e214bd75aed975c610aaff6026c5d2880
URL: https://github.com/llvm/llvm-project/commit/08a6229e214bd75aed975c610aaff6026c5d2880
DIFF: https://github.com/llvm/llvm-project/commit/08a6229e214bd75aed975c610aaff6026c5d2880.diff
LOG: [LLDB] Adding skipif for arm linux for TestStructuredBinding.py
Added:
Modified:
lldb/test/API/lang/cpp/structured-binding/TestStructuredBinding.py
Removed:
################################################################################
diff --git a/lldb/test/API/lang/cpp/structured-binding/TestStructuredBinding.py b/lldb/test/API/lang/cpp/structured-binding/TestStructuredBinding.py
index 9f57d45dd9fc..603c2df7163e 100644
--- a/lldb/test/API/lang/cpp/structured-binding/TestStructuredBinding.py
+++ b/lldb/test/API/lang/cpp/structured-binding/TestStructuredBinding.py
@@ -7,6 +7,7 @@ class TestStructuredBinding(TestBase):
mydir = TestBase.compute_mydir(__file__)
+ @skipIf(oslist=["linux"], archs=["arm"])
@skipIf(compiler="clang", compiler_version=['<', '14.0'])
def test(self):
self.build()
More information about the lldb-commits
mailing list