File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
lldb/test/API/lang/cpp/preferred_name Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 66import lldb
77import lldbsuite .test .lldbutil as lldbutil
88from lldbsuite .test .lldbtest import *
9- from lldbsuite .test import decorators
10-
9+ from lldbsuite .test .decorators import *
1110
1211class TestPreferredName (TestBase ):
1312
13+ @skipIf (compiler = "clang" , compiler_version = ['<' , '16.0' ])
1414 def test_frame_var (self ):
1515 self .build ()
1616 lldbutil .run_to_source_breakpoint (self , "return" , lldb .SBFileSpec ("main.cpp" ))
@@ -26,6 +26,7 @@ def test_frame_var(self):
2626 self .expect ("frame variable varChar" , substrs = ["Bar<char>" ])
2727 self .expect ("frame variable varFooInt" , substrs = ["Foo<BarInt>" ])
2828
29+ @skipIf (compiler = "clang" , compiler_version = ['<' , '16.0' ])
2930 def test_expr (self ):
3031 self .build ()
3132 lldbutil .run_to_source_breakpoint (self , "return" , lldb .SBFileSpec ("main.cpp" ))
You can’t perform that action at this time.
0 commit comments