[Erp5-report] r40486 luke - /erp5/trunk/buildout/tests/assertSoftware.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Nov 22 17:13:44 CET 2010
Author: luke
Date: Mon Nov 22 17:13:39 2010
New Revision: 40486
URL: http://svn.erp5.org?rev=40486&view=rev
Log:
- check neon instead of serf, which is not provided by default
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=40486&r1=40485&r2=40486&view=diff
==============================================================================
--- erp5/trunk/buildout/tests/assertSoftware.py [utf8] (original)
+++ erp5/trunk/buildout/tests/assertSoftware.py [utf8] Mon Nov 22 17:13:39 2010
@@ -681,19 +681,17 @@ class AssertSubversion(AssertSoftwareMix
'sqlite3', 'zlib', 'libuuid', 'neon']]
self.assertEqual(sorted(expected_rpath_list), elf_dict['runpath_list'])
-class AssertSerf(AssertSoftwareMixin):
- """Tests for built serf"""
- def test_ld_libserf(self):
- elf_dict = readElfAsDict('parts/serf/lib/libserf-0.so.0.0.0')
+class AssertNeon(AssertSoftwareMixin):
+ """Tests for built neon"""
+ def test_ld_libneon(self):
+ elf_dict = readElfAsDict('parts/neon/lib/libneon.so')
self.assertEqual(sorted([
- 'libapr-1', 'libaprutil-1', 'libc', 'libcrypt', 'libcrypto',
- 'libdl', 'libexpat', 'libm', 'libpthread', 'librt',
- 'libssl', 'libuuid', 'libz',
+ 'libc', 'libcrypto', 'libxml2', 'libdl', 'libm', 'libssl', 'libz',
]),
elf_dict['library_list'])
soft_dir = os.path.join(os.path.abspath(os.curdir), 'parts')
expected_rpath_list = [os.path.join(soft_dir, software, 'lib') for
- software in ['apache', 'openssl', 'libexpat', 'libuuid', 'zlib']]
+ software in ['openssl', 'libxml2', 'zlib']]
self.assertEqual(sorted(expected_rpath_list), elf_dict['runpath_list'])
class AssertPythonMysql(AssertSoftwareMixin):
More information about the Erp5-report
mailing list