Skip to content

Commit 9d6a470

Browse files
authored
Merge pull request #1216 from dcci/bacini-bacetti
Cherry-pick from upstream/llvm.org an handful of test suite fixes.
2 parents fc78685 + d9df0a9 commit 9d6a470

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ def setUp(self):
7070
self.bkpt_string = '// Set breakpoint here'
7171
self.breakpoint = line_number('main.cpp', self.bkpt_string)
7272

73-
if "gcc" in self.getCompiler() or self.isIntelCompiler() or self.getArchitecture() in ['arm64', 'arm64e']:
73+
if "gcc" in self.getCompiler() or self.isIntelCompiler():
7474
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)')
7676
else:
7777
self.step_out_destination = line_number(
7878
'main.cpp', '// Expect to stop here after step-out (clang)')

lldb/test/API/functionalities/thread/step_out/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ thread_func ()
3030
step_out_of_here(); // Expect to stop here after step-out (clang)
3131

3232
// 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)
3434
}
3535

3636
int main ()

lldb/test/API/macosx/indirect_symbol/TestIndirectSymbols.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def setUp(self):
1919
self.main_source = "main.c"
2020

2121
@skipUnlessDarwin
22-
@expectedFailureAll(oslist=no_match(["macosx"]), bugnumber="rdar://55952764")
2322
@add_test_categories(['pyapi'])
2423
def test_with_python_api(self):
2524
"""Test stepping and setting breakpoints in indirect and re-exported symbols."""
@@ -29,10 +28,9 @@ def test_with_python_api(self):
2928
target = self.dbg.CreateTarget(exe)
3029
self.assertTrue(target, VALID_TARGET)
3130

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])
3634

3735
self.main_source_spec = lldb.SBFileSpec(self.main_source)
3836

0 commit comments

Comments
 (0)