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

pactest: Do not remove symlink to directory if local package uses that path

If we have a symlink to a directory (e.g. /lib -> usr/lib), then
we can not remove it if a local package thinks it has files in the
symlink directory (e.g. /lib/foo), because this will invalidate the
local file database.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Allan McRae 2012-07-17 13:22:08 +10:00 committed by Dan McGee
parent eb87155391
commit fa2eadcec7

View File

@ -0,0 +1,22 @@
self.description = "do not remove directory symlink if another package has file in its path"
lp1 = pmpkg("pkg1")
lp1.files = ["usr/lib/foo",
"lib -> usr/lib"]
self.addpkg2db("local", lp1)
lp2 = pmpkg("pkg2")
lp2.files = ["lib/bar"]
self.addpkg2db("local", lp2)
p = pmpkg("pkg1", "1.0-2")
p.files = ["usr/lib/foo"]
self.addpkg2db("sync", p)
self.args = "-S pkg1"
self.addrule("PACMAN_RETCODE=1")
self.addrule("PKG_VERSION=pkg1|1.0-1")
self.addrule("FILE_EXIST=/lib/bar")
self.expectfailure = True