11
11
class TestReverseContinueBreakpoints (ReverseTestBase ):
12
12
@skipIfRemote
13
13
@skipIf (macos_version = ["<" , "15.0" ])
14
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
15
14
def test_reverse_continue (self ):
16
15
self .reverse_continue_internal (async_mode = False )
17
16
18
17
@skipIfRemote
19
18
@skipIf (macos_version = ["<" , "15.0" ])
20
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
21
19
def test_reverse_continue_async (self ):
22
20
self .reverse_continue_internal (async_mode = True )
23
21
@@ -47,13 +45,11 @@ def reverse_continue_internal(self, async_mode):
47
45
48
46
@skipIfRemote
49
47
@skipIf (macos_version = ["<" , "15.0" ])
50
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
51
48
def test_reverse_continue_breakpoint (self ):
52
49
self .reverse_continue_breakpoint_internal (async_mode = False )
53
50
54
51
@skipIfRemote
55
52
@skipIf (macos_version = ["<" , "15.0" ])
56
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
57
53
def test_reverse_continue_breakpoint_async (self ):
58
54
self .reverse_continue_breakpoint_internal (async_mode = True )
59
55
@@ -72,13 +68,11 @@ def reverse_continue_breakpoint_internal(self, async_mode):
72
68
73
69
@skipIfRemote
74
70
@skipIf (macos_version = ["<" , "15.0" ])
75
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
76
71
def test_reverse_continue_skip_breakpoint (self ):
77
72
self .reverse_continue_skip_breakpoint_internal (async_mode = False )
78
73
79
74
@skipIfRemote
80
75
@skipIf (macos_version = ["<" , "15.0" ])
81
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
82
76
def test_reverse_continue_skip_breakpoint_async (self ):
83
77
self .reverse_continue_skip_breakpoint_internal (async_mode = True )
84
78
@@ -104,13 +98,11 @@ def reverse_continue_skip_breakpoint_internal(self, async_mode):
104
98
105
99
@skipIfRemote
106
100
@skipIf (macos_version = ["<" , "15.0" ])
107
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
108
101
def test_continue_preserves_direction (self ):
109
102
self .continue_preserves_direction_internal (async_mode = False )
110
103
111
104
@skipIfRemote
112
105
@skipIf (macos_version = ["<" , "15.0" ])
113
- @skipIf (oslist = lldbplatformutil .getDarwinOSTriples (), archs = ["x86_64" ])
114
106
def test_continue_preserves_direction_asyhc (self ):
115
107
self .continue_preserves_direction_internal (async_mode = True )
116
108
0 commit comments