Commit 263d5448 authored by Łukasz Nowak's avatar Łukasz Nowak

- assert file package


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40652 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d924ab91
......@@ -1506,6 +1506,24 @@ class AssertLxml(AssertSoftwareMixin):
'zlib',
])
class AssertFile(AssertSoftwareMixin):
def test_ld_file(self):
self.assertLibraryList('parts/file/bin/file', [
'libc',
'libmagic',
'libz',
], [
'file',
])
def test_ld_libmagic(self):
self.assertLibraryList('parts/file/lib/libmagic.so', [
'libc',
'libz',
], [
'zlib',
])
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