summaryrefslogtreecommitdiffstats
path: root/pactest
diff options
context:
space:
mode:
authorXavier Chantry <shiningxc@gmail.com>2008-08-17 13:45:05 +0200
committerDan McGee <dan@archlinux.org>2008-08-24 01:01:45 +0200
commit14203d77f43c02e60770dcbd4a9cb2b39b38bcd6 (patch)
treee7c1ff96451403e873b3fc8a60d30e5196876263 /pactest
parentec928faad350e2aad957256fb47cb10277990738 (diff)
downloadpacman-14203d77f43c02e60770dcbd4a9cb2b39b38bcd6.tar.gz
pacman-14203d77f43c02e60770dcbd4a9cb2b39b38bcd6.tar.xz
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 <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest')
-rw-r--r--pactest/tests/sync200.py.in (renamed from pactest/tests/sync200.py)3
1 files changed, 3 insertions, 0 deletions
diff --git a/pactest/tests/sync200.py b/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")