Skip to content

Commit

Permalink
[lldb][test] TestCPP20Standard.py: skip on older compilers
Browse files Browse the repository at this point in the history
Requires C++20 support (at least for the spaceship operator).
Seems to work back to Clang-11
  • Loading branch information
Michael137 committed Apr 24, 2023
1 parent 8eea50c commit 5379189
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from lldbsuite.test import lldbutil

class TestCPP20Standard(TestBase):
@skipIf(compiler="clang", compiler_version=['<', '11.0'])
def test_cpp20(self):
"""
Tests that we can evaluate an expression in C++20 mode
Expand Down

0 comments on commit 5379189

Please sign in to comment.