1import lldb 2from lldbsuite.test.lldbtest import * 3from lldbsuite.test.decorators import * 4 5# This test checks that source code location is shown correctly 6# when DWARF5 debug information is used. 7 8class TestTargetSourceMap(TestBase): 9 10 @skipIf(archs="aarch64", oslist="linux", 11 bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44180") 12 def test_source_map(self): 13 # Set the target soure map to map "./" to the current test directory. 14 yaml_path = os.path.join(self.getSourceDir(), "a.yaml") 15 obj_path = self.getBuildArtifact('a.out') 16 self.yaml2obj(yaml_path, obj_path) 17 18 # Create a target with the object file we just created from YAML 19 target = self.dbg.CreateTarget(obj_path) 20 21 # Check we are able to show the locations properly. 22 self.expect("b main", VALID_BREAKPOINT_LOCATION, 23 substrs=['main + 13 at test.cpp:2:3, address = 0x000000000040052d']) 24 25 self.expect("b foo", VALID_BREAKPOINT_LOCATION, 26 substrs=['foo() + 4 at test.cpp:6:1, address = 0x0000000000400534']) 27