summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/sync200.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tests/sync200.py')
-rw-r--r--test/pacman/tests/sync200.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/pacman/tests/sync200.py b/test/pacman/tests/sync200.py
new file mode 100644
index 00000000..2bcdd5d3
--- /dev/null
+++ b/test/pacman/tests/sync200.py
@@ -0,0 +1,17 @@
+self.description = "Synchronize the local database"
+
+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")