File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
functionalities/thread/step_out Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -70,9 +70,9 @@ def setUp(self):
70
70
self .bkpt_string = '// Set breakpoint here'
71
71
self .breakpoint = line_number ('main.cpp' , self .bkpt_string )
72
72
73
- if "gcc" in self .getCompiler () or self .isIntelCompiler () or self . getArchitecture () in [ 'arm64' , 'arm64e' ] :
73
+ if "gcc" in self .getCompiler () or self .isIntelCompiler ():
74
74
self .step_out_destination = line_number (
75
- 'main.cpp' , '// Expect to stop here after step-out (icc and gcc; arm64 )' )
75
+ 'main.cpp' , '// Expect to stop here after step-out (icc and gcc)' )
76
76
else :
77
77
self .step_out_destination = line_number (
78
78
'main.cpp' , '// Expect to stop here after step-out (clang)' )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ thread_func ()
30
30
step_out_of_here (); // Expect to stop here after step-out (clang)
31
31
32
32
// Return
33
- return NULL ; // Expect to stop here after step-out (icc and gcc; arm64 )
33
+ return NULL ; // Expect to stop here after step-out (icc and gcc)
34
34
}
35
35
36
36
int main ()
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ def setUp(self):
19
19
self .main_source = "main.c"
20
20
21
21
@skipUnlessDarwin
22
- @expectedFailureAll (oslist = no_match (["macosx" ]), bugnumber = "rdar://55952764" )
23
22
@add_test_categories (['pyapi' ])
24
23
def test_with_python_api (self ):
25
24
"""Test stepping and setting breakpoints in indirect and re-exported symbols."""
@@ -29,10 +28,9 @@ def test_with_python_api(self):
29
28
target = self .dbg .CreateTarget (exe )
30
29
self .assertTrue (target , VALID_TARGET )
31
30
32
- if self .platformIsDarwin ():
33
- lib1 = self .getBuildArtifact ('libindirect.dylib' )
34
- lib2 = self .getBuildArtifact ('libreexport.dylib' )
35
- self .registerSharedLibrariesWithTarget (target , [lib1 , lib2 ])
31
+ lib1 = self .getBuildArtifact ('libindirect.dylib' )
32
+ lib2 = self .getBuildArtifact ('libreexport.dylib' )
33
+ self .registerSharedLibrariesWithTarget (target , [lib1 , lib2 ])
36
34
37
35
self .main_source_spec = lldb .SBFileSpec (self .main_source )
38
36
You can’t perform that action at this time.
0 commit comments