From dbee45d8fea97dca9666b09688cc7548d5023c4e Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Mon, 2 Jan 2023 19:30:18 +0400 Subject: [PATCH] [LLDB] Enable TestSignedTypes.py for AArch64/Windows TestSignedTypes.py passes on AArch64 Windows. This patch disables this test only for i[3-6]86 and x86_64 Windows platform. --- lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py b/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py index e94dabe..015eaea 100644 --- a/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py +++ b/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py @@ -20,7 +20,7 @@ class SignedTypesTestCase(TestBase): self.line = line_number( self.source, '// Set break point at this line.') - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489") + @expectedFailureAll(oslist=["windows"], archs=["i[3-6]86", "x86_64"], bugnumber="llvm.org/pr24489") def test(self): """Test that variables with signed types display correctly.""" self.build() -- 2.7.4