Commit f3b8ab56 authored by Rafael Monnerat's avatar Rafael Monnerat

Follow up r43471, sqlite 'use readline'

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@43630 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 64b03035
......@@ -463,10 +463,15 @@ class AssertSqlite3(AssertSoftwareMixin):
"""Tests for built memcached"""
def test_ld_bin_sqlite3(self):
self.assertLibraryList('parts/sqlite3/bin/sqlite3', ['libpthread', 'libc', 'libdl', 'libsqlite3'], ['sqlite3'])
self.assertLibraryList('parts/sqlite3/bin/sqlite3', ['libpthread', 'libc', 'libdl', 'libsqlite3', 'libreadline', 'libncurses'],
['sqlite3'],
[ os.path.join(os.path.abspath(os.curdir), 'parts', 'readline', 'lib'),
os.path.join(os.path.abspath(os.curdir), 'parts', 'ncurses', 'lib')])
def test_ld_libsqlite3(self):
self.assertLibraryList('parts/sqlite3/lib/libsqlite3.so', ['libpthread', 'libc', 'libdl'], [])
self.assertLibraryList('parts/sqlite3/lib/libsqlite3.so', ['libpthread', 'libc', 'libdl'], [],
[ os.path.join(os.path.abspath(os.curdir), 'parts', 'readline', 'lib'),
os.path.join(os.path.abspath(os.curdir), 'parts', 'ncurses', 'lib')])
class AssertMemcached(AssertSoftwareMixin):
"""Tests for built memcached"""
......
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