diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/auto')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile | 2 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile b/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile index 314f1cb2f07..194af7b3239 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile @@ -2,4 +2,6 @@ LEVEL = ../../../make CXX_SOURCES := main.cpp +CFLAGS_EXTRAS += $(NO_LIMIT_DEBUG_INFO_FLAGS) + include $(LEVEL)/Makefile.rules diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py index e3f7fb1618a..9746dec2fa3 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py @@ -8,7 +8,8 @@ import lldbsuite.test.lldbutil as lldbutil class CPPAutoTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - + + @expectedFailureGcc("GCC does not generate complete debug info") def test_with_run_command(self): """Test that auto types work in the expression parser""" self.build() |