mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-17 14:55:07 -05:00
af357d6ab0
The bulk of this commit is adding new tests to ensure the new behavior works without disrupting old behavior. This is a relatively sane maneuver when a package adds a conf file (e.g. '/etc/mercurial/hgrc') that was not previously in the package, but it is placed in the backup array. In essence, we can treat the existing file as having always been a part of the package and do our normal compare/install as pacnew logic checks. Signed-off-by: Dan McGee <dan@archlinux.org>
19 lines
417 B
Python
19 lines
417 B
Python
self.description = "FS#8156- conflict between directory and incoming symlink"
|
|
|
|
p1 = pmpkg("pkg1")
|
|
p1.files = ["test/",
|
|
"test/file"]
|
|
self.addpkg2db("local", p1)
|
|
|
|
p2 = pmpkg("pkg2")
|
|
p2.files = ["test2/",
|
|
"test2/file2",
|
|
"test -> test2"]
|
|
self.addpkg2db("sync", p2)
|
|
|
|
self.args = "-S pkg2"
|
|
|
|
self.addrule("PACMAN_RETCODE=1")
|
|
self.addrule("PKG_EXIST=pkg1")
|
|
self.addrule("!PKG_EXIST=pkg2")
|