Files
llvm-project/lldb/test/API/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
Dave Lee f72a150db0 [lldb] Disallow SHARED_BUILD_TESTCASE for non-default self.build() (#188523)
Change `self.build(...)` to assert if called with arguments of any kind,
for tests which have `SHARED_BUILD_TESTCASE` enabled (the default).

This also changes all tests that began asserting with this change, tests
which call `self.build(...)` with arguments.

---------

Co-authored-by: Adrian Prantl <adrian.prantl@gmail.com>
2026-03-25 14:37:20 -07:00

54 lines
1.8 KiB
Python

import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class TestWithLimitDebugInfo(TestBase):
SHARED_BUILD_TESTCASE = False
def _run_test(self, build_dict):
self.build(dictionary=build_dict)
# Get the path of the executable
exe_path = self.getBuildArtifact("a.out")
# Load the executable
target = self.dbg.CreateTarget(exe_path)
self.assertTrue(target.IsValid(), VALID_TARGET)
# Break on main function
lldbutil.run_break_set_by_file_and_line(
self, "derived.h", line_number("derived.h", "// break1")
)
lldbutil.run_break_set_by_file_and_line(
self, "derived.h", line_number("derived.h", "// break2")
)
# Launch the process
process = target.LaunchSimple(None, None, self.get_process_working_directory())
self.assertTrue(process.IsValid(), PROCESS_IS_VALID)
# Get the thread of the process
self.assertEqual(process.GetState(), lldb.eStateStopped, PROCESS_STOPPED)
self.expect_expr("1", result_type="int", result_value="1")
self.expect_expr("this", result_type="Foo *")
self.expect_expr("this->x", result_type="int", result_value="12345")
self.runCmd("continue")
self.expect_expr("1", result_type="int", result_value="1")
self.expect_expr("this", result_type="ns::Foo2 *")
self.expect_expr("this->x", result_type="int", result_value="23456")
@add_test_categories(["dwarf", "dwo"])
def test_default(self):
self._run_test(dict(CFLAGS_EXTRAS="$(LIMIT_DEBUG_INFO_FLAGS)"))
@add_test_categories(["dwarf", "dwo"])
def test_debug_names(self):
self._run_test(
dict(CFLAGS_EXTRAS="$(LIMIT_DEBUG_INFO_FLAGS) -gdwarf-5 -gpubnames")
)