forked from OSchip/llvm-project
[lldb] Skip target variable test on AS
This commit is contained in:
parent
d245f2e859
commit
c900b0a6d5
|
@ -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')}
|
||||
|
|
Loading…
Reference in New Issue