[Lldb-commits] [lldb] 60fde95 - [lldb] Remove GCC XFAIL for TestCPPAuto and TestClassTemplateParameterPack

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 11 14:22:48 PDT 2021


Author: Raphael Isemann
Date: 2021-06-11T23:22:26+02:00
New Revision: 60fde9542aac57d4b7b98bed0be746a3a82bd0eb

URL: https://github.com/llvm/llvm-project/commit/60fde9542aac57d4b7b98bed0be746a3a82bd0eb
DIFF: https://github.com/llvm/llvm-project/commit/60fde9542aac57d4b7b98bed0be746a3a82bd0eb.diff

LOG: [lldb] Remove GCC XFAIL for TestCPPAuto and TestClassTemplateParameterPack

Both tests are passing for GCC>8 on Linux so let's mark them as passing.

TestCPPAuto was originally disabled due to "an problem with debug info generation"
in ea35dbeff29f3095df3ad1d77cce3d9e5b197e7c .

TestClassTemplateParameterPack was disabled without explanation in
0f01fb39e3fe3d8e99df1dd185e75ad584b777b3 .

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/auto/TestCPPAuto.py
    lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/auto/TestCPPAuto.py b/lldb/test/API/lang/cpp/auto/TestCPPAuto.py
index c30de747e0896..c5b656b9f1b4b 100644
--- a/lldb/test/API/lang/cpp/auto/TestCPPAuto.py
+++ b/lldb/test/API/lang/cpp/auto/TestCPPAuto.py
@@ -11,9 +11,6 @@ class CPPAutoTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
-    @expectedFailureAll(
-        compiler="gcc",
-        bugnumber="GCC generates incomplete debug info")
     def test_with_run_command(self):
         """Test that auto types work in the expression parser"""
         self.build()

diff  --git a/lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py b/lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
index e0497b62f55cb..d452ae6a4272d 100644
--- a/lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
+++ b/lldb/test/API/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
@@ -7,7 +7,6 @@ class TestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
-    @expectedFailureAll(compiler="gcc")
     def test(self):
         self.build()
         lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.cpp"))


        


More information about the lldb-commits mailing list