Skip to content

Commit ded2dd0

Browse files
authored
Merge pull request #5150 from apple/🍒/rebranch/abe9599f04f07baae46f4123d4c43d330f34df52
[lldb] Skip target variable tests on Darwin because of chained fixups
2 parents 5a9d9d7 + 69e63b6 commit ded2dd0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_target_command(self):
4242
self.buildAll()
4343
self.do_target_command()
4444

45-
@expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
45+
@skipIfDarwin # Chained Fixups
4646
def test_target_variable_command(self):
4747
"""Test 'target variable' command before and after starting the inferior."""
4848
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}
@@ -51,7 +51,7 @@ def test_target_variable_command(self):
5151

5252
self.do_target_variable_command('globals')
5353

54-
@expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
54+
@skipIfDarwin # Chained Fixups
5555
def test_target_variable_command_no_fail(self):
5656
"""Test 'target variable' command before and after starting the inferior."""
5757
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
@@ -18,8 +18,8 @@ def setUp(self):
1818
self.source, '// Set break point at this line.')
1919
self.shlib_names = ["a"]
2020

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

lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
class CxxChar8_tTestCase(TestBase):
1414

15+
@skipIfDarwin # Chained Fixups
1516
@skipIf(compiler="clang", compiler_version=['<', '7.0'])
16-
@expectedFailureDarwin(archs=["arm64", "arm64e"]) # <rdar://problem/37773624>
1717
def test_without_process(self):
1818
"""Test that C++ supports char8_t without a running process."""
1919
self.build()

0 commit comments

Comments
 (0)