[lldb] Make TestBSDArchives a no-debug-info-test

The DSYM variant of this test is failing since D94890. But as we explicitly
try to disable the DSYM generation in the makefile and build the archive on
our own, I don't see why we even need to run the DSYM version of the test.

This patch disables the generated derived versions of this test for the
different debug information containers (which includes the failing DSYM one).
This commit is contained in:
Raphael Isemann 2021-01-21 13:06:47 +01:00
parent 99b7b41edf
commit 060b51e052
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ class BSDArchivesTestCase(TestBase):
self.line = line_number(
'a.c', '// Set file and line breakpoint inside a().')
# Doesn't depend on any specific debug information.
@no_debug_info_test
@expectedFailureAll(
oslist=["windows"],
bugnumber="llvm.org/pr24527. Makefile.rules doesn't know how to build static libs on Windows")