Move important information up in -Si output
[pacman-ng.git] / test / pacman / tests / fileconflict003.py
blob749e5a993fe12e9c4f83713e6f299468ecdf115d
1 self.description = "FS#8156- conflict between directory and incoming symlink"
3 p1 = pmpkg("pkg1")
4 p1.files = ["test/",
5 "test/file"]
6 self.addpkg2db("local", p1)
8 p2 = pmpkg("pkg2")
9 p2.files = ["test2/",
10 "test2/file2",
11 "test -> test2"]
12 self.addpkg2db("sync", p2)
14 self.args = "-S pkg2"
16 self.addrule("PACMAN_RETCODE=1")
17 self.addrule("PKG_EXIST=pkg1")
18 self.addrule("!PKG_EXIST=pkg2")