From: Muhammad Omair Javaid Date: Mon, 2 Jan 2023 15:30:18 +0000 (+0400) Subject: [LLDB] Enable TestSignedTypes.py for AArch64/Windows X-Git-Tag: upstream/17.0.6~22379 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dbee45d8fea97dca9666b09688cc7548d5023c4e;p=platform%2Fupstream%2Fllvm.git [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. --- diff --git a/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py b/lldb/test/API/lang/cpp/signed_types/TestSignedTypes.py index e94dabe7ac48..015eaea547dc 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()