From 14203d77f43c02e60770dcbd4a9cb2b39b38bcd6 Mon Sep 17 00:00:00 2001 From: Xavier Chantry Date: Sun, 17 Aug 2008 13:45:05 +0200 Subject: [PATCH] Allow sync200 pactest to pass without libdownload. This was a stupid and unimportant regression caused by commit 4476598e4e128f4595d5383ecb51a9576a447b5b . When libdownload is not available, a xfercommand is needed for this pactest to run properly. Signed-off-by: Xavier Chantry Signed-off-by: Dan McGee --- pactest/tests/{sync200.py => sync200.py.in} | 3 +++ 1 file changed, 3 insertions(+) rename pactest/tests/{sync200.py => sync200.py.in} (78%) diff --git a/pactest/tests/sync200.py b/pactest/tests/sync200.py.in similarity index 78% rename from pactest/tests/sync200.py rename to pactest/tests/sync200.py.in index 9005bd3d..3c11f83f 100644 --- a/pactest/tests/sync200.py +++ b/pactest/tests/sync200.py.in @@ -1,5 +1,8 @@ self.description = "Synchronize the local database" +if not "download" in "@LIBS@": + self.option['XferCommand'] = ['/usr/bin/curl %u > %o'] + sp1 = pmpkg("spkg1", "1.0-1") sp1.depends = ["spkg2"] sp2 = pmpkg("spkg2", "2.0-1")