[llvm-branch-commits] [lldb] 060b51e - [lldb] Make TestBSDArchives a no-debug-info-test

Raphael Isemann via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jan 21 04:13:44 PST 2021


Author: Raphael Isemann
Date: 2021-01-21T13:06:48+01:00
New Revision: 060b51e0524aed6b6cc452baa8eb6d663a580eee

URL: https://github.com/llvm/llvm-project/commit/060b51e0524aed6b6cc452baa8eb6d663a580eee
DIFF: https://github.com/llvm/llvm-project/commit/060b51e0524aed6b6cc452baa8eb6d663a580eee.diff

LOG: [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).

Added: 
    

Modified: 
    lldb/test/API/functionalities/archives/TestBSDArchives.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/archives/TestBSDArchives.py b/lldb/test/API/functionalities/archives/TestBSDArchives.py
index 4464edd96bea..500c1763b690 100644
--- a/lldb/test/API/functionalities/archives/TestBSDArchives.py
+++ b/lldb/test/API/functionalities/archives/TestBSDArchives.py
@@ -19,6 +19,8 @@ def setUp(self):
         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")


        


More information about the llvm-branch-commits mailing list