File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
lldb/test/API/repl/cpp_exceptions Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 13
13
import swift
14
14
import lldbsuite .test .lldbutil as lldbutil
15
15
from lldbsuite .test .lldbtest import *
16
- from lldbsuite .test import decorators
16
+ from lldbsuite .test . decorators import *
17
17
18
18
19
19
class TestSwiftREPLExceptions (TestBase ):
@@ -23,17 +23,17 @@ class TestSwiftREPLExceptions(TestBase):
23
23
# each debug info format.
24
24
NO_DEBUG_INFO_TESTCASE = True
25
25
26
- @decorators . skipUnlessDarwin
27
- @decorators . swiftTest
26
+ @skipUnlessDarwin
27
+ @swiftTest
28
28
def test_set_repl_mode_exceptions (self ):
29
29
""" Test that SetREPLMode turns off trapping exceptions."""
30
30
return
31
31
self .build ()
32
32
self .main_source_file = lldb .SBFileSpec ("main.swift" )
33
33
self .do_repl_mode_test ()
34
34
35
- @decorators . skipUnlessDarwin
36
- @decorators . swiftTest
35
+ @skipUnlessDarwin
36
+ @swiftTest
37
37
def test_repl_exceptions (self ):
38
38
""" Test the lldb --repl turns off trapping exceptions."""
39
39
self .build ()
@@ -43,7 +43,7 @@ def setUp(self):
43
43
# Call super's setUp().
44
44
TestBase .setUp (self )
45
45
46
- @decorators . skipIfRemote
46
+ @skipIfRemote
47
47
def do_repl_test (self ):
48
48
sdk_root = ""
49
49
with open (self .getBuildArtifact ("sdkroot.txt" ), 'r' ) as f :
You can’t perform that action at this time.
0 commit comments