Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | # |
| 4 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 5 | from oeqa.runtime.case import OERuntimeTestCase |
| 6 | from oeqa.core.decorator.depends import OETestDepends |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 7 | from oeqa.core.decorator.data import skipIfNotInDataVar |
| 8 | from oeqa.runtime.decorator.package import OEHasPackage |
| 9 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 10 | import subprocess |
| 11 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 12 | class MultilibTest(OERuntimeTestCase): |
| 13 | |
| 14 | def archtest(self, binary, arch): |
| 15 | """ |
| 16 | Check that ``binary`` has the ELF class ``arch`` (e.g. ELF32/ELF64). |
| 17 | """ |
| 18 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 19 | dest = "{}/test_binary".format(self.td.get('T', '')) |
| 20 | self.target.copyFrom(binary, dest) |
| 21 | output = subprocess.check_output("readelf -h {}".format(dest), shell=True).decode() |
| 22 | os.remove(dest) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 23 | |
| 24 | l = [l.split()[1] for l in output.split('\n') if "Class:" in l] |
| 25 | if l: |
| 26 | theclass = l[0] |
| 27 | else: |
| 28 | self.fail('Cannot parse readelf. Output:\n%s' % output) |
| 29 | |
| 30 | msg = "%s isn't %s (is %s)" % (binary, arch, theclass) |
| 31 | self.assertEqual(theclass, arch, msg=msg) |
| 32 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 33 | @skipIfNotInDataVar('MULTILIBS', 'multilib:lib32', |
| 34 | "This isn't a multilib:lib32 image") |
| 35 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 36 | @OEHasPackage(['lib32-libc6']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 37 | def test_check_multilib_libc(self): |
| 38 | """ |
| 39 | Check that a multilib image has both 32-bit and 64-bit libc in. |
| 40 | """ |
| 41 | self.archtest("/lib/libc.so.6", "ELF32") |
| 42 | self.archtest("/lib64/libc.so.6", "ELF64") |
| 43 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 44 | @OETestDepends(['multilib.MultilibTest.test_check_multilib_libc']) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 45 | @OEHasPackage(['lib32-connman']) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 46 | def test_file_connman(self): |
| 47 | self.archtest("/usr/sbin/connmand", "ELF32") |