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

- start checking librsync


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40614 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d9a0e88c
......@@ -1397,6 +1397,33 @@ class AssertVarnish(AssertSoftwareMixin):
'varnish-2.1',
])
class AssertLibrsync(AssertSoftwareMixin):
def test_ld_rdiff(self):
self.assertLibraryList('parts/librsync/bin/rdiff', [
'libbz2',
'libc',
'libpopt',
'librsync',
'libz',
], [
'bzip2',
'librsync',
'popt',
'zlib',
])
def test_ld_librsync(self):
self.assertLibraryList('parts/librsync/lib/librsync.so', [
'libbz2',
'libc',
'libpopt',
'libz',
], [
'bzip2',
'popt',
'zlib',
])
class AssertElfLinkedInternally(AssertSoftwareMixin):
def test(self):
return
......
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