From 617c31c6a1ddd57c6b750b3882c177175067a735 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Tue, 16 May 2023 10:09:53 +0400 Subject: [PATCH] [LLDB] Fix typo in TestDataFormatterSynthVal.py This is follow up to 039b28e14e6d to fix a typo to make sure skipped part of test is only skipped for AArch64 Windows platform. --- .../data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py b/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py index 6761928..6b03976 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py @@ -96,7 +96,7 @@ class DataFormatterSynthValueTestCase(TestBase): # check that an aptly defined synthetic provider does not affect # one-lining - if self.isAArch64Windows(): + if not self.isAArch64Windows(): self.expect( "expression struct Struct { myInt theInt{12}; }; Struct()", substrs=['(theInt = 12)']) -- 2.7.4