@@ -48,6 +48,8 @@ def follow_child_helper(self, use_fork, call_exec):
48
48
self .expect ("continue" , patterns = [r"exited with status = 1[0-4]" ])
49
49
50
50
@skipUnlessPlatform (["linux" ])
51
+ # https://github.com/llvm/llvm-project/issues/85084.
52
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
51
53
def test_follow_parent_vfork_no_exec (self ):
52
54
"""
53
55
Make sure that debugging concurrent vfork() from multiple threads won't crash lldb during follow-parent.
@@ -56,6 +58,8 @@ def test_follow_parent_vfork_no_exec(self):
56
58
self .follow_parent_helper (use_fork = False , call_exec = False )
57
59
58
60
@skipUnlessPlatform (["linux" ])
61
+ # https://github.com/llvm/llvm-project/issues/85084.
62
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
59
63
def test_follow_parent_fork_no_exec (self ):
60
64
"""
61
65
Make sure that debugging concurrent fork() from multiple threads won't crash lldb during follow-parent.
@@ -64,6 +68,8 @@ def test_follow_parent_fork_no_exec(self):
64
68
self .follow_parent_helper (use_fork = True , call_exec = False )
65
69
66
70
@skipUnlessPlatform (["linux" ])
71
+ # https://github.com/llvm/llvm-project/issues/85084.
72
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
67
73
def test_follow_parent_vfork_call_exec (self ):
68
74
"""
69
75
Make sure that debugging concurrent vfork() from multiple threads won't crash lldb during follow-parent.
@@ -72,6 +78,8 @@ def test_follow_parent_vfork_call_exec(self):
72
78
self .follow_parent_helper (use_fork = False , call_exec = True )
73
79
74
80
@skipUnlessPlatform (["linux" ])
81
+ # https://github.com/llvm/llvm-project/issues/85084.
82
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
75
83
def test_follow_parent_fork_call_exec (self ):
76
84
"""
77
85
Make sure that debugging concurrent vfork() from multiple threads won't crash lldb during follow-parent.
@@ -80,6 +88,8 @@ def test_follow_parent_fork_call_exec(self):
80
88
self .follow_parent_helper (use_fork = True , call_exec = True )
81
89
82
90
@skipUnlessPlatform (["linux" ])
91
+ # https://github.com/llvm/llvm-project/issues/85084.
92
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
83
93
def test_follow_child_vfork_no_exec (self ):
84
94
"""
85
95
Make sure that debugging concurrent vfork() from multiple threads won't crash lldb during follow-child.
@@ -88,6 +98,8 @@ def test_follow_child_vfork_no_exec(self):
88
98
self .follow_child_helper (use_fork = False , call_exec = False )
89
99
90
100
@skipUnlessPlatform (["linux" ])
101
+ # https://github.com/llvm/llvm-project/issues/85084.
102
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
91
103
def test_follow_child_fork_no_exec (self ):
92
104
"""
93
105
Make sure that debugging concurrent fork() from multiple threads won't crash lldb during follow-child.
@@ -96,6 +108,8 @@ def test_follow_child_fork_no_exec(self):
96
108
self .follow_child_helper (use_fork = True , call_exec = False )
97
109
98
110
@skipUnlessPlatform (["linux" ])
111
+ # https://github.com/llvm/llvm-project/issues/85084.
112
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
99
113
def test_follow_child_vfork_call_exec (self ):
100
114
"""
101
115
Make sure that debugging concurrent vfork() from multiple threads won't crash lldb during follow-child.
@@ -104,6 +118,8 @@ def test_follow_child_vfork_call_exec(self):
104
118
self .follow_child_helper (use_fork = False , call_exec = True )
105
119
106
120
@skipUnlessPlatform (["linux" ])
121
+ # https://github.com/llvm/llvm-project/issues/85084.
122
+ @skipIf (oslist = ["linux" ], archs = ["aarch64" , "arm" ])
107
123
def test_follow_child_fork_call_exec (self ):
108
124
"""
109
125
Make sure that debugging concurrent fork() from multiple threads won't crash lldb during follow-child.
0 commit comments