From: Muhammad Omair Javaid Date: Tue, 16 May 2023 06:09:53 +0000 (+0400) Subject: [LLDB] Fix typo in TestDataFormatterSynthVal.py X-Git-Tag: upstream/17.0.6~8418 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=617c31c6a1ddd57c6b750b3882c177175067a735;p=platform%2Fupstream%2Fllvm.git [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. --- 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)'])