[LLDB] Enable TestSignedTypes.py for AArch64/Windows
authorMuhammad Omair Javaid <omair.javaid@linaro.org>
Mon, 2 Jan 2023 15:30:18 +0000 (19:30 +0400)
committerMuhammad Omair Javaid <omair.javaid@linaro.org>
Mon, 2 Jan 2023 15:33:45 +0000 (19:33 +0400)
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

index e94dabe..015eaea 100644 (file)
@@ -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()