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