forked from OSchip/llvm-project
[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" inea35dbeff2
. TestClassTemplateParameterPack was disabled without explanation in0f01fb39e3
.
This commit is contained in:
parent
0aef747b84
commit
60fde9542a
|
@ -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()
|
||||
|
|
|
@ -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"))
|
||||
|
|
Loading…
Reference in New Issue