summaryrefslogtreecommitdiffstats
path: root/pactest/tests/fileconflict002.py
diff options
context:
space:
mode:
authorChantry Xavier <shiningxc@gmail.com>2007-10-28 13:39:12 +0100
committerDan McGee <dan@archlinux.org>2007-10-29 13:15:41 +0100
commit014306eb99c90c5c5c6d19d50aa47e29c25e8e14 (patch)
tree8411cbec14df85878a1c635d96d8d5f904755e8c /pactest/tests/fileconflict002.py
parentc50a7c6026e491771f0607d5e3fed737b3b5e8f3 (diff)
downloadpacman-014306eb99c90c5c5c6d19d50aa47e29c25e8e14.tar.gz
pacman-014306eb99c90c5c5c6d19d50aa47e29c25e8e14.tar.xz
simple pactest renaming : split conflict* into depconflict* and fileconflict*.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/tests/fileconflict002.py')
-rw-r--r--pactest/tests/fileconflict002.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/pactest/tests/fileconflict002.py b/pactest/tests/fileconflict002.py
new file mode 100644
index 00000000..da04e332
--- /dev/null
+++ b/pactest/tests/fileconflict002.py
@@ -0,0 +1,16 @@
+self.description = "Fileconflict with symlinks (2)"
+
+p1 = pmpkg("pkg1")
+p1.files = ["dir/realdir/file",
+ "dir/symdir -> realdir"]
+self.addpkg(p1)
+
+p2 = pmpkg("pkg2")
+p2.files = ["dir/symdir/file"]
+self.addpkg(p2)
+
+self.args = "-A %s" % " ".join([p.filename() for p in p1, p2])
+
+self.addrule("PACMAN_RETCODE=1")
+self.addrule("!PKG_EXIST=pkg1")
+self.addrule("!PKG_EXIST=pkg2")