summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-07-17 01:15:53 +1000
committerDan McGee <dan@archlinux.org>2012-08-02 09:38:16 -0500
commit6f47dfc9203e45ef91afdc772c27eb7034bf6590 (patch)
treeb8c5963651205f087beae495e885ab3a5185e231
parente3772f765474b4678beec6d88e3a1c56fd591aa4 (diff)
pactest: conflict between directory and a file
Note failure to detect a conflict between a directory in one package and a file in the other when the directory is not currently on the filesystem. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--test/pacman/tests/fileconflict015.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/pacman/tests/fileconflict015.py b/test/pacman/tests/fileconflict015.py
new file mode 100644
index 00000000..78634d7e
--- /dev/null
+++ b/test/pacman/tests/fileconflict015.py
@@ -0,0 +1,17 @@
+self.description = "conflict between a directory and a file"
+
+p1 = pmpkg("pkg1")
+p1.files = ["foo/"]
+self.addpkg2db("sync", p1)
+
+p2 = pmpkg("pkg2")
+p2.files = ["foo"]
+self.addpkg2db("sync", p2)
+
+self.args = "-S pkg1 pkg2"
+
+self.addrule("PACMAN_RETCODE=1")
+self.addrule("!PKG_EXIST=pkg1")
+self.addrule("!PKG_EXIST=pkg2")
+
+self.expectfailure = True