Commit fd3a1fb7 authored by Łukasz Nowak's avatar Łukasz Nowak

- start checking gettext


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40535 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b7d9590c
......@@ -1654,6 +1654,19 @@ class AssertPython26(AssertSoftwareMixin):
]]
self.assertEqual(sorted(expected_rpath_list), elf_dict['runpath_list'])
class AssertGettext(AssertSoftwareMixin):
def test_ld_libintl(self):
elf_dict = readElfAsDict('parts/gettext/lib/libintl.so')
self.assertEqual(sorted([
'libc',
]),
elf_dict['library_list'])
soft_dir = os.path.join(os.path.abspath(os.curdir), 'parts')
expected_rpath_list = [os.path.join(soft_dir, software, 'lib') for
software in [
]]
self.assertEqual(sorted(expected_rpath_list), elf_dict['runpath_list'])
class AssertElfLinkedInternally(AssertSoftwareMixin):
def test(self):
result_dict = {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment