pacman/test/pacman/tests/fileconflict021.py
Florian Pritz 4a427dbc1b Add pactests for not detecting directory conflicts with upgrades
Signed-off-by: Allan McRae <allan@archlinux.org>
2012-12-14 12:35:34 +10:00

18 lines
394 B
Python

self.description = "upgrade package overwriting existing unowned file with directory"
lp1 = pmpkg("pkg1")
self.addpkg2db("local", lp1)
self.filesystem = ["file"]
p = pmpkg("pkg1", "1.0-2")
p.files = ["file/"]
self.addpkg2db("sync", p)
self.args = "-S pkg1"
self.addrule("PACMAN_RETCODE=1")
self.addrule("PKG_VERSION=pkg1|1.0-1")
self.addrule("!DIR_EXIST=file/")
self.expectfailure = True