We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb72fa commit b767b05Copy full SHA for b767b05
lldb/test/API/lang/cpp/preferred_name/TestPreferredName.py
@@ -11,6 +11,7 @@
11
12
class TestPreferredName(TestBase):
13
14
+ @skipIf(compiler="clang", compiler_version=['<', '16.0'])
15
def test_frame_var(self):
16
self.build()
17
lldbutil.run_to_source_breakpoint(self, "return", lldb.SBFileSpec("main.cpp"))
@@ -26,6 +27,7 @@ def test_frame_var(self):
26
27
self.expect("frame variable varChar", substrs=["Bar<char>"])
28
self.expect("frame variable varFooInt", substrs=["Foo<BarInt>"])
29
30
31
def test_expr(self):
32
33
0 commit comments