diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oe/qa.py | 1 | ||||
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/oelib/elf.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oe/qa.py b/meta/lib/oe/qa.py index ea831b930a..e8a854a302 100644 --- a/meta/lib/oe/qa.py +++ b/meta/lib/oe/qa.py | |||
| @@ -156,6 +156,7 @@ def elf_machine_to_string(machine): | |||
| 156 | """ | 156 | """ |
| 157 | try: | 157 | try: |
| 158 | return { | 158 | return { |
| 159 | 0x00: "Unset", | ||
| 159 | 0x02: "SPARC", | 160 | 0x02: "SPARC", |
| 160 | 0x03: "x86", | 161 | 0x03: "x86", |
| 161 | 0x08: "MIPS", | 162 | 0x08: "MIPS", |
diff --git a/meta/lib/oeqa/selftest/cases/oelib/elf.py b/meta/lib/oeqa/selftest/cases/oelib/elf.py index d0a28090f2..5a5f9b4fdf 100644 --- a/meta/lib/oeqa/selftest/cases/oelib/elf.py +++ b/meta/lib/oeqa/selftest/cases/oelib/elf.py | |||
| @@ -21,6 +21,6 @@ class TestElf(TestCase): | |||
| 21 | self.assertEqual(oe.qa.elf_machine_to_string(0xB7), "AArch64") | 21 | self.assertEqual(oe.qa.elf_machine_to_string(0xB7), "AArch64") |
| 22 | self.assertEqual(oe.qa.elf_machine_to_string(0xF7), "BPF") | 22 | self.assertEqual(oe.qa.elf_machine_to_string(0xF7), "BPF") |
| 23 | 23 | ||
| 24 | self.assertEqual(oe.qa.elf_machine_to_string(0x00), "Unknown (0)") | 24 | self.assertEqual(oe.qa.elf_machine_to_string(0x00), "Unset") |
| 25 | self.assertEqual(oe.qa.elf_machine_to_string(0xDEADBEEF), "Unknown (3735928559)") | 25 | self.assertEqual(oe.qa.elf_machine_to_string(0xDEADBEEF), "Unknown (3735928559)") |
| 26 | self.assertEqual(oe.qa.elf_machine_to_string("foobar"), "Unknown ('foobar')") | 26 | self.assertEqual(oe.qa.elf_machine_to_string("foobar"), "Unknown ('foobar')") |
