summaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorMuhammad Omair Javaid <omair.javaid@linaro.org>2023-05-16 10:09:53 +0400
committerMuhammad Omair Javaid <omair.javaid@linaro.org>2023-05-16 10:13:06 +0400
commit617c31c6a1ddd57c6b750b3882c177175067a735 (patch)
tree76066a65d9067b2284ae2a20622bfa494d3bca73 /lldb
parentdce89fe7212255b5f76fff3b8d55929920f0eb34 (diff)
downloadllvm-617c31c6a1ddd57c6b750b3882c177175067a735.tar.gz
[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.
Diffstat (limited to 'lldb')
-rw-r--r--lldb/test/API/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py2
1 files changed, 1 insertions, 1 deletions
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 67619287ef65..6b0397626690 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)'])