2 Test lldb 'image list' on object files across multiple architectures.
3 This exercises classes like ObjectFileELF and their support for opening
4 foreign-architecture object files.
13 from lldbsuite.test.decorators import *
14 from lldbsuite.test.lldbtest import *
15 from lldbsuite.test import lldbutil
18 class TestImageListMultiArchitecture(TestBase):
20 mydir = TestBase.compute_mydir(__file__)
24 def test_image_list_shows_multiple_architectures(self):
25 """Test that image list properly shows the correct architecture for a set of different architecture object files."""
27 "hello-freebsd-10.0-x86_64-clang-3.3": re.compile(r"x86_64-(\*)?-freebsd10.0(-unknown)? x86_64"),
28 "hello-freebsd-10.0-x86_64-gcc-4.7.3": re.compile(r"x86_64-(\*)?-freebsd10.0(-unknown)? x86_64"),
29 "hello-netbsd-6.1-x86_64-gcc-4.5.3": re.compile(r"x86_64-(\*)?-netbsd6.1.4(-unknown)? x86_64"),
30 "hello-ubuntu-14.04-x86_64-gcc-4.8.2": re.compile(r"x86_64-(\*)?-linux(-unknown)? x86_64"),
31 "hello-ubuntu-14.04-x86_64-clang-3.5pre": re.compile(r"x86_64-(\*)?-linux(-unknown)? x86_64"),
34 for image_name in images:
35 file_name = os.path.abspath(
37 os.path.dirname(__file__),
40 expected_triple_and_arch_regex = images[image_name]
42 self.runCmd("file {}".format(file_name))
43 self.match("image list -t -A", [expected_triple_and_arch_regex])
44 # Revert to the host platform after all of this is done
45 self.runCmd("platform select host")