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

- check that apr-util-1/apr_dbd_sqlite3.so is linked correctly


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40655 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0ecbe6fa
......@@ -1050,6 +1050,20 @@ class AssertApache(AssertSoftwareMixin):
def test_ld_module_mod_vhost_alias(self):
self.assertLibraryList('parts/apache/modules/mod_vhost_alias.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
def test_ld_apr_dbd_sqlite3(self):
self.assertLibraryList('parts/apache/lib/apr-util-1/apr_dbd_sqlite3.so', [
'libc',
'libpthread',
'libsqlite3',
], [
'libexpat',
'libuuid',
'openssl',
'pcre',
'sqlite3',
'zlib',
])
class AssertItools(AssertSoftwareMixin):
def test_ld_parserso(self):
self.assertLibraryList('parts/itools/lib/itools/xml/parser.so', ['libc', 'libglib-2.0', 'libpthread'], ['glib'])
......
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