From 617b1b721d319450c9ab046361e7ba98409032d9 Mon Sep 17 00:00:00 2001 From: Kazuhiko Shiozaki <kazuhiko@nexedi.com> Date: Thu, 21 Apr 2011 09:29:29 +0000 Subject: [PATCH] update AssertGlib test to follow the change in r45560. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45600 20353a03-c40f-0410-a6d1-a30d3c3de9de --- buildout/tests/assertSoftware.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/buildout/tests/assertSoftware.py b/buildout/tests/assertSoftware.py index ab8df76501..6fcedb40f7 100644 --- a/buildout/tests/assertSoftware.py +++ b/buildout/tests/assertSoftware.py @@ -2015,13 +2015,20 @@ class AssertGlib(AssertSoftwareMixin): def test_ld_libglib(self): self.assertLibraryList('parts/glib/lib/libglib-2.0.so', - self.core_lib_list, self.core_rpath_list) + self.core_lib_list + [ + 'libdl', + 'librt', + ], [ + 'gettext', + 'zlib', + ]) def test_ld_libgmodule(self): self.assertLibraryList('parts/glib/lib/libgmodule-2.0.so', self.core_lib_list + [ 'libdl', 'libglib-2.0', + 'librt', ], self.rpath_list) def test_ld_libgobject(self): @@ -2089,6 +2096,7 @@ class AssertGlib(AssertSoftwareMixin): self.assertLibraryList('parts/glib/bin/glib-compile-schemas', self.core_lib_list + [ 'libglib-2.0', + 'librt', ], self.rpath_list) def test_ld_glibgenmarshal(self): @@ -2129,6 +2137,7 @@ class AssertGlib(AssertSoftwareMixin): self.assertLibraryList('parts/glib/bin/gtester', self.core_lib_list + [ 'libglib-2.0', + 'librt', ], self.rpath_list) class AssertLibuuid(AssertSoftwareMixin): -- 2.30.9