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

- make list sorted and diff friendly


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40669 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 11221124
......@@ -1037,8 +1037,14 @@ class AssertApache(AssertSoftwareMixin):
self.apache_rpath)
def test_ld_module_mod_ssl(self):
self.assertLibraryList('parts/apache/modules/mod_ssl.so', ['libpthread', 'libc', 'libcrypto', 'libdl',
'libssl', 'libz'], self.apache_rpath)
self.assertLibraryList('parts/apache/modules/mod_ssl.so',[
'libc',
'libcrypto',
'libdl',
'libpthread',
'libssl',
'libz',
], self.apache_rpath)
def test_ld_module_mod_status(self):
self.assertLibraryList('parts/apache/modules/mod_status.so', ['libpthread', 'libc'],
......
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