summaryrefslogtreecommitdiffstats
path: root/pactest/tests/sync200.py.in
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/tests/sync200.py.in
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/tests/sync200.py.in')
-rw-r--r--pactest/tests/sync200.py.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/pactest/tests/sync200.py.in b/pactest/tests/sync200.py.in
new file mode 100644
index 00000000..3c11f83f
--- /dev/null
+++ b/pactest/tests/sync200.py.in
@@ -0,0 +1,18 @@
+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")
+sp2.depends = ["spkg3"]
+sp3 = pmpkg("spkg3", "3.0-1")
+sp3.depends = ["spkg1"]
+
+for sp in sp1, sp2, sp3:
+ self.addpkg2db("sync", sp)
+
+self.args = "-Sy"
+
+self.addrule("PACMAN_RETCODE=0")