[Erp5-report] r43630 rafael - /erp5/trunk/buildout/tests/assertSoftware.py

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Feb 23 19:21:43 CET 2011


Author: rafael
Date: Wed Feb 23 19:21:42 2011
New Revision: 43630

URL: http://svn.erp5.org?rev=43630&view=rev
Log:
Follow up r43471, sqlite 'use readline'

Modified:
    erp5/trunk/buildout/tests/assertSoftware.py

Modified: erp5/trunk/buildout/tests/assertSoftware.py
URL: http://svn.erp5.org/erp5/trunk/buildout/tests/assertSoftware.py?rev=43630&r1=43629&r2=43630&view=diff
==============================================================================
--- erp5/trunk/buildout/tests/assertSoftware.py [utf8] (original)
+++ erp5/trunk/buildout/tests/assertSoftware.py [utf8] Wed Feb 23 19:21:42 2011
@@ -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"""



More information about the Erp5-report mailing list