[Lldb-commits] [lldb] 42229b6 - [lldb] XFAIL TestForwardDeclaration.test_debug_names on windows

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 10 08:10:00 PDT 2020


Author: Pavel Labath
Date: 2020-06-10T17:09:51+02:00
New Revision: 42229b6de756d7e3843d9cdd1988a88d76970695

URL: https://github.com/llvm/llvm-project/commit/42229b6de756d7e3843d9cdd1988a88d76970695
DIFF: https://github.com/llvm/llvm-project/commit/42229b6de756d7e3843d9cdd1988a88d76970695.diff

LOG: [lldb] XFAIL TestForwardDeclaration.test_debug_names on windows

Before 539b47c9 this test was not actually using the debug_names section
because the -gdwarf added by Makefile.rules on windows overrode the
-gdwarf-5 flag from CFLAGS_EXTRAS. Now that -gdwarf-5 is respected, the
test is failing.

Added: 
    

Modified: 
    lldb/test/API/lang/c/forward/TestForwardDeclaration.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/c/forward/TestForwardDeclaration.py b/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
index f955d013bc90..f8f8a46d8a29 100644
--- a/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
+++ b/lldb/test/API/lang/c/forward/TestForwardDeclaration.py
@@ -59,6 +59,7 @@ def test(self):
     @skipIfDarwin
     @skipIf(compiler=no_match("clang"))
     @skipIf(compiler_version=["<", "7.0"])
+    @expectedFailureAll(oslist=["windows"])
     def test_debug_names(self):
         """Test that we are able to find complete types when using DWARF v5
         accelerator tables"""


        


More information about the lldb-commits mailing list