summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-07-17 01:26:54 +1000
committerDan McGee <dan@archlinux.org>2012-08-02 09:38:24 -0500
commiteb871553912f5cf4ab3cb8aade73cf2a24dcb82c (patch)
tree84463d15ea9f73824582105d87b34fc341db7230
parent6f47dfc9203e45ef91afdc772c27eb7034bf6590 (diff)
pactest: conflict between files having same effective path
Note failure to detect a conflict between files having the same effective path across packages due to a directory symlink. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--test/pacman/tests/fileconflict016.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/pacman/tests/fileconflict016.py b/test/pacman/tests/fileconflict016.py
new file mode 100644
index 00000000..93797f64
--- /dev/null
+++ b/test/pacman/tests/fileconflict016.py
@@ -0,0 +1,23 @@
+self.description = "file conflict with same effective path across packages (directory symlink)"
+
+lp1 = pmpkg("filesystem", "1.0-1")
+lp1.files = ["usr/",
+ "usr/lib/",
+ "lib -> usr/lib/"]
+self.addpkg2db("local", lp1)
+
+p1 = pmpkg("pkg1")
+p1.files = ["lib/foo"]
+self.addpkg2db("sync", p1)
+
+p2 = pmpkg("pkg2")
+p2.files = ["usr/lib/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