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 6
6
import lldb
7
7
import lldbsuite .test .lldbutil as lldbutil
8
8
from lldbsuite .test .lldbtest import *
9
- from lldbsuite .test import decorators
10
-
9
+ from lldbsuite .test .decorators import *
11
10
12
11
class TestPreferredName (TestBase ):
13
12
13
+ @skipIf (compiler = "clang" , compiler_version = ['<' , '16.0' ])
14
14
def test_frame_var (self ):
15
15
self .build ()
16
16
lldbutil .run_to_source_breakpoint (self , "return" , lldb .SBFileSpec ("main.cpp" ))
@@ -26,6 +26,7 @@ def test_frame_var(self):
26
26
self .expect ("frame variable varChar" , substrs = ["Bar<char>" ])
27
27
self .expect ("frame variable varFooInt" , substrs = ["Foo<BarInt>" ])
28
28
29
+ @skipIf (compiler = "clang" , compiler_version = ['<' , '16.0' ])
29
30
def test_expr (self ):
30
31
self .build ()
31
32
lldbutil .run_to_source_breakpoint (self , "return" , lldb .SBFileSpec ("main.cpp" ))
You can’t perform that action at this time.
0 commit comments