[LLDB] Fix typo in TestDataFormatterSynthVal.py
authorMuhammad Omair Javaid <omair.javaid@linaro.org>
Tue, 16 May 2023 06:09:53 +0000 (10:09 +0400)
committerMuhammad Omair Javaid <omair.javaid@linaro.org>
Tue, 16 May 2023 06:13:06 +0000 (10:13 +0400)
This is follow up to 039b28e14e6d to fix a typo to make sure skipped
part of test is only skipped for AArch64 Windows platform.

lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py

index 6761928..6b03976 100644 (file)
@@ -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)'])