[lldb] Skip target variable test on AS

This commit is contained in:
Jonas Devlieghere 2021-10-17 19:12:19 -07:00
parent d245f2e859
commit c900b0a6d5
1 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@ class targetCommandTestCase(TestBase):
self.do_target_command()
@expectedFailureAll(archs=['arm64e']) # <rdar://problem/37773624>
@expectedFailureDarwin(archs=["arm64"]) # <rdar://problem/37773624>
def test_target_variable_command(self):
"""Test 'target variable' command before and after starting the inferior."""
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}
@ -54,6 +55,7 @@ class targetCommandTestCase(TestBase):
self.do_target_variable_command('globals')
@expectedFailureAll(archs=['arm64e']) # <rdar://problem/37773624>
@expectedFailureDarwin(archs=["arm64"]) # <rdar://problem/37773624>
def test_target_variable_command_no_fail(self):
"""Test 'target variable' command before and after starting the inferior."""
d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')}