1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Add two new pactests to check symlink behavior

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Nagy Gabor 2007-10-09 13:27:08 -05:00 committed by Dan McGee
parent 7f3adc3936
commit 3c4e98f7b5
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,20 @@
self.description = "Fileconflict with symlinks"
lp = pmpkg("dummy")
lp.files = ["dir/realdir/",
"dir/symdir -> realdir"]
self.addpkg2db("local", lp)
p1 = pmpkg("pkg1")
p1.files = ["dir/realdir/file"]
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")

View File

@ -0,0 +1,17 @@
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")