Skip to content

Commit de14972

Browse files
committed
[lldb] Skip tests for target var without a proc on both arm64 & arm64e
LLDB needs to be taught about chained fixups. <rdar://problem/37773624> (cherry picked from commit b1bb1d4)
1 parent e7f24a2 commit de14972

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

lldb/test/API/commands/target/basic/TestTargetCommand.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ def test_target_command(self):
4444
self.buildAll()
4545
self.do_target_command()
4646

47-
@expectedFailureAll(archs=['arm64e']) # <rdar://problem/37773624>
48-
@expectedFailureDarwin(archs=["arm64"]) # <rdar://problem/37773624>
47+
@expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
4948
def test_target_variable_command(self):
5049
"""Test 'target variable' command before and after starting the inferior."""
5150
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}
@@ -54,8 +53,7 @@ def test_target_variable_command(self):
5453

5554
self.do_target_variable_command('globals')
5655

57-
@expectedFailureAll(archs=['arm64e']) # <rdar://problem/37773624>
58-
@expectedFailureDarwin(archs=["arm64"]) # <rdar://problem/37773624>
56+
@expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
5957
def test_target_variable_command_no_fail(self):
6058
"""Test 'target variable' command before and after starting the inferior."""
6159
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}

lldb/test/API/lang/c/global_variables/TestGlobalVariables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def setUp(self):
2121
self.shlib_names = ["a"]
2222

2323
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764")
24-
@expectedFailureAll(archs=["arm64e"]) # <rdar://problem/37773624>
24+
@expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
2525
def test_without_process(self):
2626
"""Test that static initialized variables can be inspected without
2727
process."""

0 commit comments

Comments
 (0)