forked from OSchip/llvm-project
[lldb] Skip TestCppKeywordsAsCIdentifiers on Windows
Somehow static_assert is a keyword with C on Windows (maybe the Windows default is C11?). Skipping the test for now.
This commit is contained in:
parent
df62afd559
commit
618f11ba0b
|
@ -7,6 +7,8 @@ class TestCase(TestBase):
|
|||
|
||||
mydir = TestBase.compute_mydir(__file__)
|
||||
|
||||
# FIXME: Clang on Windows somehow thinks static_assert is a C keyword.
|
||||
@skipIfWindows
|
||||
@no_debug_info_test
|
||||
def test(self):
|
||||
self.build()
|
||||
|
|
Loading…
Reference in New Issue