From ac5a99d13742bc78873f76db56cf5d348faeed76 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=81ukasz=20Nowak?= <luke@nexedi.com>
Date: Wed, 24 Nov 2010 17:16:55 +0000
Subject: [PATCH]  - start checking librsync

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40614 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 buildout/tests/assertSoftware.py | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/buildout/tests/assertSoftware.py b/buildout/tests/assertSoftware.py
index 93aec49760..6493b7a1fa 100644
--- a/buildout/tests/assertSoftware.py
+++ b/buildout/tests/assertSoftware.py
@@ -1397,6 +1397,33 @@ class AssertVarnish(AssertSoftwareMixin):
       'varnish-2.1',
       ])
 
+class AssertLibrsync(AssertSoftwareMixin):
+  def test_ld_rdiff(self):
+    self.assertLibraryList('parts/librsync/bin/rdiff', [
+      'libbz2',
+      'libc',
+      'libpopt',
+      'librsync',
+      'libz',
+      ], [
+      'bzip2',
+      'librsync',
+      'popt',
+      'zlib',
+      ])
+
+  def test_ld_librsync(self):
+    self.assertLibraryList('parts/librsync/lib/librsync.so', [
+      'libbz2',
+      'libc',
+      'libpopt',
+      'libz',
+      ], [
+      'bzip2',
+      'popt',
+      'zlib',
+      ])
+
 class AssertElfLinkedInternally(AssertSoftwareMixin):
   def test(self):
     return
-- 
2.30.9